Qvotr

Qvotr

Save and share quotes from around the web with a single click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Qvotr",
  "version": "0.3.6",
  "description": "Save and share quotes from around the web with a single click.",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "browser_action": {
    "default_title": "Qvotr",
    "default_icon": {
      "19": "icon.png",
      "38": "icon.png"
    }
  },
  "background": {
    "scripts": [
      "jquery-2.1.1.min.js",
      "eventPage.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": false,
      "js": [
        "jquery-2.1.1.min.js",
        "typeahead.bundle.min.js",
        "tagmanager.js",
        "contentScript.js"
      ],
      "css": [
        "extension.css",
        "tagmanager.css"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "storage",
    "tabs",
    "<all_urls>",
    "https://www.qvotr.com/"
  ],
  "web_accessible_resources": [
    "images/close-modal.png",
    "images/success.png"
  ]
}