YouTube Shorts Progress & Volume Controller

YouTube Shorts Progress & Volume Controller

Allows a slider based controlling volume in youtube shorts and Removes Sponsored posts too

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube Shorts Progress & Volume Controller",
  "version": "0.2",
  "description": "Allows a slider based controlling volume in youtube shorts and Removes Sponsored posts too",
  "permissions": [
    "tabs"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "css": [
        "slider_elem.css"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_icon": {},
    "default_title": "Youtube Shorts Vol Control",
    "default_popup": "popup.html"
  },
  "manifest_version": 3
}