Inspect and view changes in Zoho Colour Coding 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",
"manifest_version": 3,
"name": "Zoho Colour Coding",
"description": "This extension will append colour coding into Zoho calendar.",
"version": "1.92",
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https://crm.zoho.com/*"
],
"js": [
"jquery-1.11.3.min.js",
"script.min.js"
]
}
],
"icons": {
"16": "img/icon.png"
},
"action": {
"default_icon": "img/icon.png"
},
"web_accessible_resources": [
{
"resources": [
"img/*.png",
"data/*.json"
],
"matches": [
"https://crm.zoho.com/*"
]
}
]
}