Digital clock with unique designs for Google Chrome. NEW! + 100 Different design themes available
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": "__MSG_appName__",
"description": "__MSG_appDesc__",
"browser_action": {
"default_icon": "128.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"js": [
"/assets/js/Global.js"
],
"matches": [
"<all_urls>"
]
}
],
"permissions": [
"storage"
],
"background": {
"scripts": [
"/assets/js/background.js"
]
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"icons": {
"16": "16.png",
"48": "48.png",
"128": "128.png"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+Z",
"chromeos": "Alt+Z",
"linux": "Alt+Z",
"mac": "Alt+Z",
"windows": "Alt+Z"
}
}
},
"default_locale": "en",
"offline_enabled": true,
"short_name": "__MSG_shortname__",
"manifest_version": 2,
"version": "3.1.2"
}