Slava Russian Dictionary

Slava Russian Dictionary

This extension writes accents on Russian words, and adds a popup to each word with its English definition.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Slava Russian Dictionary",
  "description": "This extension writes accents on Russian words, and adds a popup to each word with its English definition.",
  "version": "0.0.0.4",
  "browser_action": {
    "default_title": "Enrich text with accents and dictionary popups",
    "default_icon": "owl_16.png",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "icons": {
    "16": "owl_16.png",
    "48": "owl_48.png",
    "128": "owl_128.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "generated/jquery.js",
      "generated/slavaConfig.js",
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "loader.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "generated/resources/*"
  ]
}