Qotter Copy & Show

Qotter Copy & Show

Shows quotations on webpages. Converts a text selection into a link. Follows such a link and selects the according text.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "short_name": "__MSG_shortName__",
  "version": "1.2",
  "default_locale": "en",
  "description": "__MSG_extensionDescription__",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "chrome_style": true,
    "default_icon": "icons/qotter_icon_ani_16_5.png",
    "default_title": "__MSG_extensionButtonTitle__"
  },
  "icons": {
    "32": "/icons/qotter_icon_chrome_32.png",
    "48": "/icons/qotter_icon_chrome_48.png",
    "128": "/icons/qotter_icon_chrome_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "qottercopyshow_ch.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "contextMenus",
    "clipboardWrite"
  ]
}