Solve puzzles to stop procrastinating on time-wasting websites.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "PuzzleBlocker: Stop wasting time with puzzles",
"version": "1.1.5",
"description": "Solve puzzles to stop procrastinating on time-wasting websites.",
"homepage_url": "https://www.puzzleblocker.com",
"manifest_version": 2,
"minimum_chrome_version": "74",
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "67.0"
}
},
"icons": {
"128": "/icon_128.png"
},
"browser_action": {
"default_icon": "/icon_128.png",
"default_popup": "/popup/popup.html"
},
"permissions": [
"storage",
"alarms",
"webNavigation"
],
"options_ui": {
"chrome_style": true,
"browser_style": true,
"page": "/options/options.html"
},
"background": {
"persistent": false,
"scripts": [
"/background.js"
]
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}