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_extName__",
"short_name": "Focus",
"version": "2.1.4",
"description": "__MSG_extDesc__",
"icons": {
"16": "\/media\/16x16.png",
"48": "\/media\/48x48.png",
"128": "\/media\/128x128.png"
},
"default_locale": "en",
"action": {
"default_popup": "popup.html"
},
"permissions": [
"storage"
],
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"main.js",
"utils.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"defaultconfig.json"
],
"matches": [
"<all_urls>"
]
}
],
"background": {
"service_worker": "background.js"
}
}