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_name__",
"description": "__MSG_description__",
"default_locale": "en",
"version": "0.1.0",
"permissions": [
"storage",
"scripting",
"declarativeNetRequest",
"unlimitedStorage",
"offscreen",
"activeTab"
],
"host_permissions": [
"<all_urls>"
],
"declarative_net_request": {
"rule_resources": [
{
"id": "s-r-list",
"enabled": true,
"path": "r_list.json"
}
]
},
"icons": {
"128": "assets\/icons\/Logo-128.png"
},
"action": {
"default_popup": "html\/popup.html"
},
"web_accessible_resources": [
{
"resources": [
"assets\/fonts\/*",
"assets\/icons\/*",
"assets\/widgets\/quick-capture\/widget-styles.css",
"assets\/widgets\/info-widget\/info-widget-styles.css"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"all_frames": true,
"js": [
"js\/content.js"
],
"run_at": "document_start"
}
],
"background": {
"service_worker": "js\/background.js"
},
"commands": {
"selected-area-screenshot": {
"suggested_key": {
"default": "Ctrl+Shift+7",
"mac": "Command+Shift+7"
},
"description": "Take a screenshot of a selected area"
},
"visible-area-screenshot": {
"suggested_key": {
"default": "Ctrl+Shift+8",
"mac": "Command+Shift+8"
},
"description": "Take a screenshot of the visible area"
}
}
}