HideYoutubeControls

Hide youtube controls when you are on a youtube page

Vad är HideYoutubeControls?

HideYoutubeControls är en Chrome-tillägg utvecklad av Ruchunteur, och dess huvudfunktion är "Hide youtube controls when you are on a youtube page".

Ladda ner HideYoutubeControls-förlängningens CRX-fil

Ladda ner HideYoutubeControls-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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)                    

Grundläggande Information om Tillägg

Namn HideYoutubeControls HideYoutubeControls
ID iflpjkbpegjcibknhepnfhbigholnolp
Officiell webbadress https://chromewebstore.google.com/detail/hideyoutubecontrols/iflpjkbpegjcibknhepnfhbigholnolp
Beskrivning Hide youtube controls when you are on a youtube page
Filstorlek 6.32 KB
Antal Installationer 21
Aktuell Version 1.0
Senast Uppdaterad 2017-03-25
Publiceringsdatum 2017-03-25
Betyg 4.33/5 Totalt 3 Betyg
Utvecklare Ruchunteur
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}