myTab+

myTab+

Watch all YouTube videos from your Chrome bookmarks. (requires myTab online)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "version": "0.8",
  "description": "__MSG_extDescription__",
  "icons": {
    "16": "img/logo16.png",
    "48": "img/logo128.png",
    "128": "img/logo128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.greinr.com/webapps/mytab/*",
        "http://greinr.local:8080/webapps/mytab/*"
      ],
      "js": [
        "script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "options_page": "options.htm",
  "host_permissions": [
    "https://www.greinr.com/*"
  ],
  "permissions": [
    "bookmarks"
  ],
  "default_locale": "en"
}