Twitch-in-Twitch

Twitch-in-Twitch

Open Twitch players inside Twitch player.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Twitch-in-Twitch",
  "version": "1.3.2",
  "description": "__MSG_description__",
  "permissions": [
    "declarativeContent",
    "tabs",
    "storage",
    "webNavigation",
    "debugger"
  ],
  "host_permissions": [
    "https://www.twitch.tv/",
    "https://www.youtube.com/",
    "https://game.naver.com/",
    "https://*.afreecatv.com/"
  ],
  "background": {
    "service_worker": "static/js/background.js"
  },
  "content_scripts": [
    {
      "js": [
        "static/js/content.js"
      ],
      "css": [
        "static/css/content.css"
      ],
      "matches": [
        "https://www.twitch.tv/*",
        "https://www.youtube.com/*",
        "https://game.naver.com/*",
        "https://*.afreecatv.com/*"
      ]
    },
    {
      "js": [
        "static/js/iframeContent.js"
      ],
      "all_frames": true,
      "matches": [
        "https://player.twitch.tv/*"
      ]
    }
  ],
  "icons": {
    "16": "logo/logo16.png",
    "32": "logo/logo32.png",
    "48": "logo/logo48.png",
    "128": "logo/logo128.png"
  },
  "action": {
    "default_icon": {
      "16": "logo/logo16.png",
      "32": "logo/logo32.png",
      "48": "logo/logo48.png",
      "128": "logo/logo128.png"
    },
    "default_title": "Popup",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "static/media/*"
      ],
      "matches": [
        "https://www.twitch.tv/*",
        "https://www.youtube.com/*",
        "https://game.naver.com/*",
        "https://*.afreecatv.com/*"
      ]
    }
  ],
  "default_locale": "en"
}