YouTube Anti Translate

YouTube Anti Translate

A small extension to disable YT video titles autotranslation.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube Anti Translate",
  "version": "1.5.13",
  "description": "A small extension to disable YT video titles autotranslation.",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "src/start.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "src/background.js"
  ],
  "browser_action": {
    "default_popup": "pages/popup.html"
  },
  "permissions": [
    "storage"
  ],
  "icons": {
    "48": "icon48.png"
  }
}