Attuno: Video Controller & YouTube Danmaku

Attuno: Video Controller & YouTube Danmaku

Universal interface for enhancing the user experience of websites with videos and audios, such as YouTube, Odysee, Coursera, etc.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "1.0.1",
  "description": "__MSG_extDescription__",
  "manifest_version": 3,
  "default_locale": "en",
  "author": "Aworei <[email protected]>",
  "homepage_url": "https://www.attuno.com",
  "icons": {
    "16": "assets/logo.png",
    "32": "assets/logo.png",
    "48": "assets/logo.png",
    "128": "assets/logo.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "assets/logo.png",
    "default_title": "Click to launch Attuno Gathering"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_ui": {
    "page": "assets/options.html",
    "browser_style": true,
    "open_in_tab": true
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "notifications",
    "storage",
    "contextMenus",
    "unlimitedStorage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}