Enforce periodic breaks to prevent RSI / eye strain.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"background": {
"scripts": [
"js/vendor/moment.min.js",
"js/background.js",
"js/settings.js",
"js/use.js",
"js/helper.js",
"js/request.js",
"js/scrolling.js"
]
},
"browser_action": {
"default_icon": {
"19": "image/icon19.png",
"38": "image/icon38.png"
},
"default_popup": "templates/popup.html",
"default_title": "Break Timer"
},
"default_locale": "en",
"content_scripts": [
{
"all_frames": true,
"run_at": "document_end",
"js": [
"js/content.js",
"js/extended.js",
"js/fonts.js",
"js/mapping.js",
"js/merged.js",
"js/source.js",
"js/stats.js"
],
"matches": [
"http://*/*/",
"https://*/*"
]
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
"description": "Enforce periodic breaks to prevent RSI / eye strain.",
"icons": {
"48": "image/icon48.png",
"128": "image/icon128.png"
},
"manifest_version": 2,
"name": "Break Timer",
"options_ui": {
"chrome_style": true,
"page": "templates/settings.html"
},
"permissions": [
"storage",
"alarms",
"notifications",
"idle",
"<all_urls>",
"webNavigation",
"tabs",
"webRequest",
"webRequestBlocking",
"*://*/*"
],
"version": "1.2.6",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}