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_extNameChrome__",
"version": "1.25.1",
"description": "__MSG_extDesc__",
"default_locale": "en",
"permissions": [
"storage"
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_title": "__MSG_extActionTitle__",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png"
}
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+S",
"mac": "Alt+S"
},
"description": "Show\/Hide the extension panel on the page"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"<all_urls>"
],
"run_at": "document_end"
}
],
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"sidebar.html",
"sidebar.css",
"images\/*.png",
"icons\/*.png",
"fonts\/*",
"_locales\/**\/*.json"
]
}
]
}