Adds a Harvest time-tracking button to task screens in Zoho Projects.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"version": "1.0.6",
"name": "__MSG_extension_name__",
"description": "__MSG_extension_description__",
"default_locale": "en",
"permissions": [
"tabs",
"*://projects.zoho.com/portal/*"
],
"content_scripts": [
{
"all_frames": true,
"js": [
"content.js"
],
"matches": [
"*://projects.zoho.com/portal/*"
]
}
],
"icons": {
"16": "images/16x16.png",
"48": "images/48x48.png",
"64": "images/64x64.png",
"128": "images/128x128.png"
},
"update_url": "http://clients2.google.com/service/update2/crx",
"manifest_version": 2
}