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",
"name": "__MSG_manifest_name__",
"version": "3.4",
"default_locale": "en",
"description": "__MSG_manifest_description__",
"manifest_version": 3,
"icons": {
"128": "icon\/128.png"
},
"action": {
"default_popup": "src\/pages\/popup\/index.html"
},
"background": {
"service_worker": "src\/pages\/background\/index.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"src\/pages\/content\/index.js"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"permissions": [
"storage"
],
"web_accessible_resources": [
{
"resources": [
"js\/*.js"
],
"matches": [
"*:\/\/*\/*"
]
},
{
"resources": [
"icons\/*"
],
"matches": [
"*:\/\/*\/*"
]
},
{
"resources": [
"index.css"
],
"matches": [
"<all_urls>"
]
}
]
}