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,
"default_locale": "en",
"name": "__MSG_extensionName__",
"version": "1.1.0",
"description": "__MSG_extensionDescription__",
"host_permissions": [
"*:\/\/*\/*"
],
"permissions": [
"activeTab",
"tabs",
"scripting",
"storage"
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'",
"sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self'"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_popup": "popup\/index.html",
"default_icon": "icon34.png"
},
"icons": {
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content\/index.iife.js"
],
"css": [
"content.css"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"*.js",
"*.css",
"*.svg",
"icon128.png",
"icon34.png",
"popup\/*",
"assets\/*",
"node_modules\/@mozilla\/readability\/*"
],
"matches": [
"<all_urls>"
]
}
]
}