HideYoutubeControls

Hide youtube controls when you are on a youtube page

什麼是HideYoutubeControls?

HideYoutubeControls是由Ruchunteur開發的Chrome擴展程式,該擴展的主要功能是“Hide youtube controls when you are on a youtube page”。

下載HideYoutubeControls擴展crx文件

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

擴展使用說明

                        Hide/show the controls of a video on youtube. (Usefull if you pause the video and the control is above the very thing you wanted to see. Such as subtitles)                    

擴展基本資訊

名稱 HideYoutubeControls HideYoutubeControls
ID iflpjkbpegjcibknhepnfhbigholnolp
官方網址 https://chromewebstore.google.com/detail/hideyoutubecontrols/iflpjkbpegjcibknhepnfhbigholnolp
簡介 Hide youtube controls when you are on a youtube page
檔案大小 6.32 KB
安裝次數 21
目前版本 1.0
更新時間 2017-03-25
上架時間 2017-03-25
評分 4.33/5 共 3 次評分
開發者 Ruchunteur
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HideYoutubeControls",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Hide youtube controls when you are on a youtube page",
    "browser_action": {
        "default_icon": "icone.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "popup.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}