Inspect and view changes in Screen Time - Block site & Stay focused 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Screen Time - Block site & Stay focused",
"version": "1.0.1",
"description": "A productive environment without any distractions. Block sites that distract yourself from your main tasks. Stop procrastination!",
"permissions": [
"declarativeContent",
"storage",
"activeTab",
"tabs"
],
"content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'",
"background": {
"scripts": [
"backgrounds/background.js"
],
"persistent": false
},
"browser_action": {
"default_popup": "dist/index.html",
"default_icon": {
"16": "dist/src/assets/images/logo16.png",
"32": "dist/src/assets/images/logo32.png",
"48": "dist/src/assets/images/logo48.png",
"128": "dist/src/assets/images/logo128.png"
}
},
"icons": {
"16": "dist/src/assets/images/logo16.png",
"32": "dist/src/assets/images/logo32.png",
"48": "dist/src/assets/images/logo48.png",
"128": "dist/src/assets/images/logo128.png"
},
"commands": {
"_execute_page_action": {
"suggested_key": {
"default": "Ctrl+Shift+P",
"mac": "Command+Shift+P"
}
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_start",
"js": [
"/content_scripts/blocked.js"
]
}
],
"web_accessible_resources": [
"dist/src/assets/images/blocked-bg-1.jpg",
"dist/src/assets/images/logo.png",
"dist/index.html",
"dist/main.prod.js"
],
"manifest_version": 2
}