YTex YouTube Extension

Adds more controls to youtube html5 player

Vad är YTex YouTube Extension?

YTex YouTube Extension är en Chrome-tillägg utvecklad av SeKa, och dess huvudfunktion är "Adds more controls to youtube html5 player".

Tilläggsskärmbilder

screenshot

Ladda ner YTex YouTube Extension-förlängningens CRX-fil

Ladda ner YTex YouTube Extension-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

                        Die Extension fügt dem HTML5 Player auf YouTube zwei weitere Buttons hinzu, mit denen man 10 Sekunden vor oder zurück springen kann.

The Extension adds two buttons to the YouTube control bar with which you can skip the next 10 seconds or rewind 10 seconds                    

Grundläggande Information om Tillägg

Namn YTex YouTube Extension YTex YouTube Extension
ID mllojahkjeoinmhcinbcnkleeefdohbm
Officiell webbadress https://chrome.google.com/webstore/detail/ytex-youtube-extension/mllojahkjeoinmhcinbcnkleeefdohbm
Beskrivning Adds more controls to youtube html5 player
Filstorlek 33.74 KB
Antal Installationer 51
Aktuell Version 1.2
Senast Uppdaterad 2020-07-08
Publiceringsdatum 2017-09-18
Betyg 3.67/5 Totalt 3 Betyg
Utvecklare SeKa
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YTex YouTube Extension",
    "description": "Adds more controls to youtube html5 player",
    "version": "1.2",
    "browser_action": {
        "default_icon": "ytex128.png"
    },
    "icons": {
        "16": "ytex16.png",
        "48": "ytex48.png",
        "128": "ytex128.png"
    },
    "web_accessible_resources": [
        "Forward.png",
        "Rewind.png"
    ],
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "css": [
                "ytex.css"
            ],
            "js": [
                "ytex.js"
            ],
            "run_at": "document_end"
        }
    ]
}