Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"version": "1.2",
"name": "__MSG_appName__",
"description": "__MSG_shortDesc__",
"default_locale": "en",
"permissions": [
"activeTab",
"storage",
"sidePanel",
"contextMenus"
],
"action": {
"default_title": "Click to open panel"
},
"side_panel": {
"default_path": "index.html"
},
"background": {
"service_worker": "assets\/js\/background.js"
},
"icons": {
"16": "assets\/img\/icons\/logo-16.png",
"48": "assets\/img\/icons\/logo-48.png",
"64": "assets\/img\/icons\/logo-64.png",
"96": "assets\/img\/icons\/logo-96.png",
"128": "assets\/img\/icons\/logo-128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"assets\/js\/sidebtn.js"
],
"run_at": "document_idle"
}
],
"host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": [
"assets\/img\/icons\/logo-48.png"
],
"matches": [
"<all_urls>"
]
}
]
}