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,
"name": "AmbientFocus",
"version": "1.1.0",
"description": "Boost focus with customizable ambient sounds and timed work sessions. Create your ideal audio environment for enhanced productivity.",
"permissions": [
"storage",
"offscreen",
"tabs"
],
"author": "[email protected]",
"action": {
"default_popup": "index.html",
"default_icon": {
"48": "logos\/48.png",
"128": "logos\/128.png"
}
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"breakTimer.js"
],
"run_at": "document_start"
}
],
"icons": {
"48": "logos\/48.png",
"128": "logos\/128.png"
},
"web_accessible_resources": [
{
"resources": [
"offscreen.html"
],
"matches": [
"<all_urls>"
]
}
]
}