Zoho Sheet - Extension & Web Clipper

Zoho Sheet - Extension & Web Clipper

Clip data, create new spreadsheets or access your recent files using Zoho Sheet's extension and web clipper

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "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.0",
  "permissions": [
    "cookies",
    "https://*/*",
    "http://*/*",
    "activeTab",
    "contextMenus",
    "notifications",
    "downloads"
  ],
  "browser_action": {
    "default_title": "Zoho Sheet",
    "default_popup": "html/zohosheetplugin.html",
    "default_icon": "images/ZohoSheetLogo.png"
  },
  "icons": {
    "128": "images/ZohoSheetLogo.png"
  },
  "background": {
    "scripts": [
      "js/storeddata.js",
      "js/constants.js",
      "js/utils.js",
      "js/copylistenerbackground.js",
      "js/sheetifier.js",
      "js/contextmenuextension.js",
      "js/sheetdownloader.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "js/copyevent.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "manifest_version": 2,
  "web_accessible_resources": [
    "js/existingworkbook.js",
    "js/newworkbook.js"
  ],
  "incognito": "split"
}