YouTube channel location

YouTube channel location

Show info about the YouTube channel's region(country) in the video description.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "1.4.2",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "action": {},
  "content_scripts": [
    {
      "run_at": "document_start",
      "js": [
        "content-script.js"
      ],
      "css": [
        "content-script.css"
      ],
      "matches": [
        "https://www.youtube.com/*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "host_permissions": [
    "https://www.youtube.com/*"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{95ae2e52-3a7a-4466-8f47-f484d33a7f3d}"
    }
  }
}