dict-cc

dict-cc

Übersetzt im Handumdrehen ein unbekanntes Wort einer Webseite!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "dict-cc",
  "version": "1.6.89",
  "description": "Übersetzt im Handumdrehen ein unbekanntes Wort einer Webseite!",
  "options_page": "options.html",
  "default_locale": "en",
  "icons": {
    "26": "icon_26.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "browser_action": {
    "default_icon": "icon19inactive.png",
    "default_title": "dict-cc aktivieren"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "minimum_chrome_version": "6",
  "permissions": [
    "tabs",
    "contextMenus",
    "http://*.syn.dict.cc/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "dict-cc-contentscript.js"
      ],
      "css": [
        "dict-cc-styles.css"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "dict-cc-styles.css",
    "dict-cc-options-styles.css"
  ]
}