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_extension_name__",
"version": "0.4.3",
"default_locale": "en",
"description": "__MSG_extension_description__",
"permissions": [
"storage",
"downloads",
"clipboardWrite",
"clipboardRead",
"identity",
"identity.email",
"alarms"
],
"background": {
"service_worker": "background.js"
},
"options_page": "options.html",
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"all_frames": true,
"run_at": "document_idle"
}
],
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"content.css",
"sys_config_renderer.html",
"_locales\/*\/messages.json"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}