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__",
"version": "2.1",
"description": "__MSG_description__",
"default_locale": "en",
"permissions": [
"declarativeNetRequest",
"unlimitedStorage",
"webRequest",
"storage",
"tabs"
],
"host_permissions": [
"<all_urls>"
],
"icons": {
"128": "\/assets\/icon.png"
},
"action": {
"default_icon": [],
"default_title": "__MSG_name__",
"default_popup": ".\/html\/popup.html"
},
"content_scripts": [
{
"match_about_blank": true,
"all_frames": false,
"js": [
".\/js\/app.js"
],
"run_at": "document_idle",
"matches": [
"*:\/\/*\/*"
]
}
],
"background": {
"service_worker": ".\/js\/bg.js"
}
}