yttwthmode

Twitch-like theater mode for Youtube livestreams and archives.

Vad är yttwthmode?

yttwthmode är en Chrome-tillägg utvecklad av maquinas, och dess huvudfunktion är "Twitch-like theater mode for Youtube livestreams and archives.".

Tilläggsskärmbilder

screenshot

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

Ladda ner yttwthmode-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

                        Changes Youtube's theater mode to emulate Twitch's. Video is displayed in the whole window with the chat on the right and goes to the bottom when the screen shrinks to half size.

Source available at https://github.com/maquinas07/yttwthmode/                    

Grundläggande Information om Tillägg

Namn yttwthmode yttwthmode
ID ahnanfplkklemnpbjcgheicpcnodmjji
Officiell webbadress https://chromewebstore.google.com/detail/yttwthmode/ahnanfplkklemnpbjcgheicpcnodmjji
Beskrivning Twitch-like theater mode for Youtube livestreams and archives.
Filstorlek 44.22 KB
Antal Installationer 140
Aktuell Version 1.3.10
Senast Uppdaterad 2024-01-14
Publiceringsdatum 2021-03-09
Betyg 3.86/5 Totalt 7 Betyg
Utvecklare maquinas
E-post [email protected]
Betalningssätt free
Hjälpsida URL https://github.com/maquinas07/yttwthmode
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "yttwthmode",
    "version": "1.3.10",
    "description": "Twitch-like theater mode for Youtube livestreams and archives.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "dist\/content-script.js"
            ]
        }
    ],
    "action": {
        "default_popup": "dist\/popup\/popup.html",
        "default_icon": {
            "128": "dist\/img\/logo_128.png"
        }
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "icons": {
        "128": "dist\/img\/logo_128.png"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{ec1cc669-f6b7-4455-b288-bca14f840bf2}"
        }
    }
}