Helix

Helix

Understanding the 1,000 words of a picture

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Helix",
  "description": "Understanding the 1,000 words of a picture",
  "version": "1.0",
  "browser_action": {
    "default_popup": "html/popup.html"
  },
  "background": {
    "scripts": [
      "js/api.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery-3.0.0.min.js",
        "js/sweetalert.min.js",
        "js/popup.js"
      ],
      "css": [
        "html/sweetalert.css"
      ]
    }
  ],
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "web_accessible_resources": [
    "icons/icon16.png",
    "icons/1.png",
    "icons/2.png",
    "icons/3.png",
    "icons/4.png",
    "icons/5.png"
  ],
  "permissions": [
    "http://labs.precog.iiitd.edu.in/resources/HelixAPI/*"
  ],
  "externally_connectable": {
    "matches": [
      "http://labs.precog.iiitd.edu.in/resources/HelixAPI/*"
    ]
  }
}