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,
"version": "1.0.3",
"name": "__MSG_appName__",
"description": "__MSG_shortDesc__",
"default_locale": "en",
"icons": {
"128": "assets\/icon.png"
},
"action": {
"default_title": "Censor Image"
},
"permissions": [
"activeTab",
"downloads",
"offscreen"
],
"background": {
"service_worker": "src\/background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"src\/content\/overlay.js"
],
"css": [
"src\/content\/overlay.css"
],
"run_at": "document_idle"
}
],
"commands": {
"region-screenshot": {
"suggested_key": {
"default": "Alt+Shift+S",
"mac": "Alt+Shift+S"
},
"description": "Save selected area"
},
"save-screenshot": {
"suggested_key": {
"default": "Alt+S",
"mac": "Alt+S"
},
"description": "Save full page screenshot"
}
},
"host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": [
"src\/common\/*.js",
"src\/content\/overlay.css",
"src\/offscreen.html",
"src\/offscreen.js"
],
"matches": [
"<all_urls>"
]
}
]
}