Quotemark

Quotemark

Save quotes from all over the web!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Quotemark",
  "version": "1.0",
  "description": "Save quotes from all over the web!",
  "permissions": [
    "tabs",
    "contextMenus",
    "<all_urls>",
    "declarativeContent",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js",
      "contextmenu.js"
    ]
  },
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": "./icons/iconcontrast.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "contentscript.js"
      ]
    }
  ],
  "icons": {
    "16": "./icons/iconcontrast.png",
    "48": "./icons/iconcontrast.png",
    "128": "./icons/iconcontrast.png"
  },
  "manifest_version": 2
}