iiSheet Spreadsheet

iiSheet Spreadsheet

Fast data entry to your spreadsheets

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "iiSheet Spreadsheet",
  "version": "1.3",
  "description": "Fast data entry to your spreadsheets",
  "permissions": [
    "background",
    "tabs",
    "http://*.iisheet.com/*",
    "https://*.iisheet.com/*",
    "http://*.google.com/*",
    "https://*.google.com/*"
  ],
  "background": {
    "page": "views/background/background.html"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "http://*.iisheet.com/*",
        "https://*.iisheet.com/*",
        "http://*.google.com/*",
        "https://*.google.com/*"
      ],
      "js": [
        "views/contentscript/contentscript.js"
      ]
    }
  ],
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "browser_action": {
    "default_title": "iiSheet",
    "default_icon": "images/icon.png",
    "default_popup": "views/popup/popup.html"
  },
  "web_accessible_resources": [
    "images/icon.png"
  ],
  "manifest_version": 2
}