Shanbay Plugin

Shanbay Plugin

A Shanbay plugin to add new word to Shanbay.com easily for reciting and memory.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_application_title__",
  "version": "1.12",
  "description": "A Shanbay plugin to add new word to Shanbay.com easily for reciting and memory. ",
  "manifest_version": 2,
  "default_locale": "en",
  "permissions": [
    "<all_urls>",
    "tts",
    "tabs",
    "clipboardRead",
    "clipboardWrite"
  ],
  "background": {
    "scripts": [
      "lib/jquery.js",
      "lib/literal.js",
      "preference.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "image/shellfish-darkblue-19.png",
    "default_title": "Shanbay Plugin",
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "minimum_chrome_version": "20",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "content_script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "19": "image/shellfish-darkblue-19.png",
    "512": "image/shellfish-darkblue-512.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';"
}