Chrome-client voor het ClockAssist-platform voor automatische urenregistratie.
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",
"manifest_version": 2,
"name": "ClockAssist Web",
"description": "Chrome-client voor het ClockAssist-platform voor automatische urenregistratie.",
"version": "1.0.4",
"browser_specific_settings": {
"gecko": {
"update_url": "https://www.clockassist.com/installed/firefox/status.json"
}
},
"browser_action": {},
"permissions": [
"activeTab",
"tabs",
"storage"
],
"icons": {
"128": "icon128.png"
},
"web_accessible_resources": [
"icon128.png"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"all_frames": false,
"js": [
"jquery.js",
"content.js",
"charts.js",
"loader.js"
],
"css": [
"style.css"
]
}
],
"background": {
"scripts": [
"jquery.js",
"background.js"
],
"persistent": true
}
}