Custom Progress Bar for YouTube™

Custom Progress Bar for YouTube™

Change Youtube™ progress bar to custom from fun collection. Make your Youtube™ player awesome!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "action": {
    "default_icon": {
      "32": "assets/icons/icon32.png",
      "48": "assets/icons/icon48.png",
      "64": "assets/icons/icon64.png",
      "128": "assets/icons/icon128.png",
      "256": "assets/icons/icon256.png"
    },
    "default_popup": "index.html",
    "default_title": "Click to change Youtube progress bar"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "style.js"
      ],
      "matches": [
        "*://*.youtube.com/*"
      ]
    },
    {
      "all_frames": true,
      "js": [
        "custom-progress-bar.js"
      ],
      "matches": [
        "*://*.custom-progressbar.com/*",
        "*://*.yt-progressbar.com/*",
        "*://*.custom-pb.com/*",
        "*://*.custom-progress-bar.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "content_security_policy": {
    "isolated_world": "script-src 'self' 'unsafe-eval'; object-src 'self'"
  },
  "default_locale": "en",
  "description": "__MSG_description__",
  "externally_connectable": {
    "matches": [
      "*://*.custom-progressbar.com/*",
      "*://*.yt-progressbar.com/*",
      "*://*.custom-pb.com/*",
      "*://*.custom-progress-bar.com/*"
    ]
  },
  "homepage_url": "https://custom-progressbar.com",
  "host_permissions": [
    "*://*.custom-pb.com/*",
    "*://*.custom-progress-bar.com/*",
    "*://*.youtube.com/*"
  ],
  "icons": {
    "32": "assets/icons/icon32.png",
    "48": "assets/icons/icon48.png",
    "64": "assets/icons/icon64.png",
    "128": "assets/icons/icon128.png",
    "256": "assets/icons/icon256.png"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAw5MdOMRWYaZWMcf9i9wFD5GFsuHdszYvfblkIq03nxyP/SyPscplR/1JUqnXfP91ldvzwDf798yWEBt3ADwlth3sQ0LZGd9R3i6j/2a9y6StyFmCZB0LoSHontuFZoVzmGObQHyN4TzQzS9pMthA9rx9L3UNMQ+Lypc7K/TvktRNFfl0QQM81oubSSjgkv9edE5u/ks473+NjYVHOYdtJGQwFf0gNj/s5RFRD3X7iUe0roKit5nRnGZDJwB5x2/kqkZmxETcxxwoKN9W82UsOAIzRepx14CAd1oToocc1BK3eXbtHNGnB9PNxWUiz7jVOF7DEoOU+iP1BxX0iHg8RwIDAQAB",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "options_page": "settings.html",
  "permissions": [
    "storage",
    "notifications",
    "unlimitedStorage",
    "activeTab",
    "alarms"
  ],
  "short_name": "__MSG_short_name__",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "3.5.0",
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "assets/*.*",
        "libs/*.*",
        "style.js",
        "custom-progress-bar.js",
        "sw.js",
        "*://*/*",
        "*://*.custom-pb.com/*",
        "*://*.custom-progress-bar.com/*"
      ]
    }
  ]
}