Examine source code of iiSheet Spreadsheet

Inspect and view changes in iiSheet Spreadsheet 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",
  "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
}