YT-HighLighter

YT-HighLighter

A timecode tracker for YouTube

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YT-HighLighter",
  "short_name": "YTHL",
  "version": "0.13",
  "description": "A timecode tracker for YouTube",
  "permissions": [
    "tabs",
    "activeTab",
    "declarativeContent",
    "scripting"
  ],
  "host_permissions": [
    "https://www.youtube.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "images/YTHL_icon16.png",
    "32": "images/YTHL_icon32.png",
    "48": "images/YTHL_icon48.png",
    "128": "images/YTHL_icon128.png"
  },
  "action": {
    "default_title": "YTHL"
  },
  "manifest_version": 3,
  "content_scripts": [],
  "web_accessible_resources": [
    {
      "resources": [
        "injectYT.js",
        "axios.min.js",
        "YTHL.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}