Universal Word

Universal Word

Translate a word easily in the youtube subtitle

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Universal Word",
  "description": "Translate a word easily in the youtube subtitle",
  "version": "1.7.1",
  "options_ui": {
    "page": "src/options/options.html",
    "chrome_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "src/content/content.css"
      ],
      "js": [
        "src/content/content.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_icon": "icon.png"
  }
}