holo-nonstop-extension

holo-nonstop-extension

Enjoy Hololive content continuously

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "holo-nonstop-extension",
  "author": "k4r1suma",
  "version": "0.1.1",
  "description": "Enjoy Hololive content continuously",
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_icon": {
      "16": "img/[email protected]",
      "32": "img/[email protected]",
      "64": "img/[email protected]",
      "128": "img/[email protected]"
    },
    "default_popup": "popup.html"
  },
  "permissions": [
    "declarativeContent",
    "tabs",
    "storage"
  ],
  "icons": {
    "16": "img/[email protected]",
    "32": "img/[email protected]",
    "64": "img/[email protected]",
    "128": "img/[email protected]"
  },
  "manifest_version": 2
}