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.0",
"default_locale": "en",
"name": "__MSG_app_name__",
"description": "__MSG_app_description__",
"icons": {
"128": "assets\/img\/active-128.png"
},
"action": {
"default_icon": "assets\/img\/active-128.png",
"default_popup": "popup.html"
},
"background": {
"service_worker": "data\/sw.js"
},
"content_scripts": [
{
"css": [
"assets\/css\/content.css"
],
"js": [
"data\/content.js"
],
"all_frames": true,
"matches": [
"<all_urls>"
],
"run_at": "document_start"
}
],
"permissions": [
"storage",
"webRequest"
],
"host_permissions": [
"*:\/\/*\/*"
],
"web_accessible_resources": [
{
"resources": [
"data\/*"
],
"matches": [
"<all_urls>"
]
}
]
}