Inspect and view changes in BetterFocus 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": "BetterFocus",
"version": "1.2",
"description": "BetterFocus helps you to use the Internet more mindfully and prevent yourself from wasting time on the web. Upon going to each webpage, the extension will ask you why you went to the webpage and whether it has to do with your overall purposes for using the Internet at that time.",
"homepage_url": "https://github.com/japierreSWE/betterfocus",
"icons": {
"48": "icons/betterfocus_icon_48.png"
},
"permissions": [
"activeTab",
"storage",
"tabs",
"*://*/*",
"webRequest",
"webRequestBlocking"
],
"browser_action": {
"default_icon": "icons/betterfocus_icon_32.png",
"default_title": "BetterFocus",
"default_popup": "popup/toggle.html"
},
"background": {
"scripts": [
"background/background.js"
]
},
"web_accessible_resources": [
"redirect.html"
]
}