Inspect and view changes in Hourly Time 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": "Hourly Time",
"version": "0.0.0.3",
"manifest_version": 2,
"description": "Record the time you spend working on web items",
"permissions": [
"<all_urls>",
"activeTab",
"tabs",
"contextMenus"
],
"background": {
"scripts": [
"/dist/app.bundle.js",
"/dist/background.bundle.js"
]
},
"browser_action": {
"default_icon": {
"16": "images/icon_16.png",
"24": "images/icon_24.png",
"32": "images/icon_32.png",
"48": "images/icon_48.png",
"96": "images/icon_96.png",
"128": "images/icon_128.png"
},
"default_title": "Hourly helps you keep track of your time on the web.",
"default_popup": "app.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_idle",
"js": [
"/dist/content-script.bundle.js"
],
"css": [
"/styles/content-script.css"
]
}
],
"icons": {
"16": "images/icon_16.png",
"24": "images/icon_24.png",
"32": "images/icon_32.png",
"48": "images/icon_48.png",
"96": "images/icon_96.png",
"128": "images/icon_128.png"
},
"web_accessible_resources": [
"images/*"
]
}