Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"version": "1.0.11",
"default_locale": "en",
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"action": {
"default_popup": "popup\/index.html",
"default_icon": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png"
},
"default_title": "__MSG_appName__"
},
"permissions": [
"storage",
"downloads",
"tabCapture",
"offscreen",
"desktopCapture",
"activeTab",
"scripting"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content\/indicator.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"content\/area-selector.js",
"content\/indicator.js"
],
"matches": [
"<all_urls>"
]
}
],
"options_page": "options\/index.html",
"commands": {
"take-screenshot": {
"suggested_key": {
"default": "Ctrl+Shift+S",
"mac": "Command+Shift+S"
},
"description": "__MSG_takeScreenshot__"
}
}
}