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,
"default_locale": "en",
"name": "__MSG_extensionName__",
"short_name": "__MSG_extensionShortName__",
"version": "1.3.3",
"description": "__MSG_extensionDescription__",
"permissions": [
"storage",
"scripting",
"offscreen",
"contextMenus",
"activeTab"
],
"options_page": "pages\/main\/index.html",
"background": {
"type": "module",
"service_worker": "pages\/background\/index.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"pages\/contentInjected\/index.js"
],
"all_frames": true,
"match_about_blank": true,
"match_origin_as_fallback": true,
"run_at": "document_start"
}
],
"action": {
"default_title": "__MSG_extensionShortName__",
"default_icon": "icon128.png",
"default_popup": "pages\/popup\/index.html"
},
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"64": "icon64.png",
"128": "icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"assets\/js\/*.js",
"assets\/css\/*.css",
"icon128.png",
"icon48.png"
],
"matches": [
"*:\/\/*\/*"
]
}
]
}