Thexnin Media Controller

Extension for Controlling Webmedia.

什麼是Thexnin Media Controller?

Thexnin Media Controller是由thexnin開發的Chrome擴展程式,該擴展的主要功能是“Extension for Controlling Webmedia.”。

擴展截圖

screenshot

下載Thexnin Media Controller擴展crx文件

下載Thexnin Media Controller擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        - Control music playing on any tab all in one place. 
- Automatically resume/pause currently playing media when you switch tabs.

Supported websites:
• YouTube
• SoundCloud                    

擴展基本資訊

名稱 Thexnin Media Controller Thexnin Media Controller
ID nnkpghdbafelcpgcioacemmplkioloab
官方網址 https://chromewebstore.google.com/detail/thexnin-media-controller/nnkpghdbafelcpgcioacemmplkioloab
簡介 Extension for Controlling Webmedia.
檔案大小 93.71 KB
安裝次數 10
目前版本 2.0
更新時間 2022-01-02
上架時間 2019-12-13
開發者 thexnin
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Thexnin Media Controller",
    "short_name": "thexnin_mc",
    "version": "2.0",
    "description": "Extension for Controlling Webmedia.",
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon_16.png",
        "32": "icon_32.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "content_for_youtube.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.soundcloud.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "content_for_soundcloud.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "index.html"
    },
    "permissions": [
        "tabs",
        "notifications"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-inline'; object-src 'self'",
    "manifest_version": 2
}