Inspect and view changes in HappyTimer - Time your tasks simple and effective 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": "HappyTimer",
"version": "1.0",
"short_name": "HappyTimer",
"author": "Julian von Gebhardi",
"icons": {
"16": "icon-timer.png",
"48": "icon-timer.png",
"128": "icon-timer.png"
},
"description": "Stay ahead of your time and break out of addictive software features and brain fatigue by using HappyTimer.",
"homepage_url": "https://airtable.com/shrpzD6EmFLs6R2sK",
"browser_action": {
"default_icon": "icon-timer.png",
"default_title": "HappyTimer",
"default_popup": "index.html"
},
"applications": {
"gecko": {
"id": "{b8754713-d0e0-4272-9a16-bcdf3f004c66}"
}
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"css": [
"/static/css/app.css"
],
"js": [
"/static/js/content.js"
]
}
],
"web_accessible_resources": [
"/static/css/content.css",
"/static/media/*.*",
"/static/fonts/*.*"
],
"background": {
"scripts": [
"/app/background.js"
],
"persistent": true
},
"permissions": [
"storage",
"tabs",
"notifications"
],
"content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'"
}