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",
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"version": "3.0",
"manifest_version": 3,
"minimum_chrome_version": "102",
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"19": "icons\/icon19.png",
"38": "icons\/icon38.png"
},
"default_popup": "pages\/popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"is_editable.js",
"content_script.js"
],
"all_frames": true,
"match_origin_as_fallback": true,
"run_at": "document_start"
}
],
"options_ui": {
"page": "pages\/options.html",
"open_in_tab": false
},
"permissions": [
"management",
"scripting",
"storage",
"tabs"
],
"host_permissions": [
"<all_urls>"
]
}