Inspect and view changes in Zen Focus Mode source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "Zen Focus Mode",
"version": "1.0",
"description": "Create a peaceful workspace by blurring all non-relevant content on the webpage.",
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
}
},
"permissions": [
"activeTab",
"storage"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{a48b4944-600d-4bfa-a461-2c0565f31bc2}"
}
}
}