elicit

elicit

Add comments to any section of any website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com https://maxcdn.bootstrapcdn.com/; object-src 'self'",
  "name": "elicit",
  "description": "Add comments to any section of any website",
  "version": "0.1",
  "permissions": [
    "activeTab",
    "tabs",
    "*://*/*"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "resources/logo16.png",
      "48": "resources/logo48.png",
      "128": "resources/logo128.png"
    }
  },
  "icons": {
    "16": "resources/logo16.png",
    "48": "resources/logo48.png",
    "128": "resources/logo128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/libs/browser-polyfill.js",
        "js/libs/html2canvas.js",
        "js/libs/elicity-e$.js",
        "js/libs/elicity-l$.js",
        "js/content/content.js"
      ],
      "css": [
        "css/font-awesome.min.css",
        "css/client.css"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "js/libs/browser-polyfill.js",
      "js/background/background.js"
    ],
    "persistent": false
  }
}