Memslate

Memslate

Memslate > Memorize your Translations

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Memslate",
  "description": "Memslate > Memorize your Translations",
  "version": "0.3.0",
  "manifest_version": 2,
  "browser_action": {
    "default_icon": "memslate-16.png",
    "default_popup": "chrome_ext/www/index.html"
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "permissions": [],
  "options_page": "chrome_ext/index.html",
  "icons": {
    "16": "memslate-16.png",
    "32": "memslate-32.png",
    "128": "memslate-128.png",
    "256": "memslate-256.png"
  },
  "background": {
    "page": "chrome_ext/background.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "chrome_ext/css/page.css"
      ],
      "js": [
        "chrome_ext/lib/jquery.min.js",
        "chrome_ext/lib/xregexp-min.js",
        "chrome_ext/lib/xregexp-unicode-base.js",
        "chrome_ext/lib/xregexp-unicode-categories.js",
        "chrome_ext/js/tooltip.js",
        "chrome_ext/js/ext_utils.js",
        "chrome_ext/www/js/utils.js",
        "chrome_ext/www/js/config.js",
        "chrome_ext/js/contentscript.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "web_accessible_resources": [
    "chrome_ext/css/tooltip.css",
    "chrome_ext/options.html"
  ]
}