Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "__MSG_app_name__",
"version": "1.2.3",
"default_locale": "en",
"description": "__MSG_app_description__",
"action": {
"default_popup": "index.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentScript.js"
]
}
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"icons": {
"16": "assets\/images\/logo.png",
"48": "assets\/images\/logo.png",
"128": "assets\/images\/logo.png"
},
"permissions": [
"storage",
"tabs",
"storage",
"tabs"
],
"web_accessible_resources": [
{
"resources": [
"dashboard.html",
"blockedPage.html",
"redirectPage.html",
"assets\/*",
"fonts\/*",
"fonts\/static\/*"
],
"matches": [
"<all_urls>"
]
}
],
"incognito": "split",
"externally_connectable": {
"matches": [
"<all_urls>"
]
}
}