Inspect and view changes in Zoho Sheet - Extension & Web Clipper 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
{
"name": "Zoho Sheet - Extension & Web Clipper",
"description": "Clip data, create new spreadsheets or access your recent files using Zoho Sheet's extension and web clipper",
"version": "1.1.1",
"permissions": [
"cookies",
"activeTab",
"contextMenus",
"notifications",
"downloads",
"scripting",
"storage"
],
"host_permissions": [
"https://*/*",
"http://*/*"
],
"action": {
"default_title": "Zoho Sheet",
"default_popup": "html/ZSPlugin.html",
"default_icon": "images/ZohoSheetLogo.png"
},
"icons": {
"128": "images/ZohoSheetLogo.png"
},
"background": {
"scripts": [
"worker_js/ZSWorker.js",
"worker_js/ZSContextMenu.js",
"worker_js/ZSDownloader.js",
"worker_js/ZSListeners.js",
"worker_js/ZSSheetifier.js",
"worker_js/ZSWorkerConstants.js",
"worker_js/ZSWorkerUtils.js"
],
"type": "module"
},
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*"
],
"js": [
"web_accessible_resources/ZSCopy.js"
],
"run_at": "document_idle"
}
],
"manifest_version": 3,
"web_accessible_resources": [
{
"resources": [
"web_accessible_resources/ZSExistingFile.js",
"web_accessible_resources/ZSNewFile.js",
"web_accessible_resources/ZSContent.js"
],
"matches": [
"https://*/*",
"http://*/*"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{652c9c1f-0430-4857-bf6a-364610d9061f}"
}
}
}