Youtube Longs

Shows gameplay footage under Youtube videos.

Cos'è Youtube Longs?

Youtube Longs è un'estensione di Chrome sviluppata da simc.sambolec, e la sua funzione principale è "Shows gameplay footage under Youtube videos.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Youtube Longs

Scarica i file di estensione Youtube Longs in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Do you need overstimulation? This extension adds random gameplay footage under Youtube videos that you are watching to keep you entertained!                    

Informazioni di Base sull'Estensione

Nome Youtube Longs Youtube Longs
ID inajamlogoahnbliabnogbcomnbiefbb
URL Ufficiale https://chromewebstore.google.com/detail/youtube-longs/inajamlogoahnbliabnogbcomnbiefbb
Descrizione Shows gameplay footage under Youtube videos.
Dimensione del File 22.01 KB
Conteggio Installazioni 1,935
Versione Corrente 1.1.2
Ultimo Aggiornamento 2023-03-26
Data di Pubblicazione 2023-02-23
Valutazione 4.07/5 Totale 27 Valutazioni
Sviluppatore simc.sambolec
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube Longs",
    "description": "Shows gameplay footage under Youtube videos.",
    "version": "1.1.2",
    "action": {
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "js": [
                "js\/functions.js",
                "js\/insertVideo.js"
            ],
            "css": [
                "css\/embeded.css"
            ],
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "yt_longs.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "default_locale": "en",
    "web_accessible_resources": [
        {
            "resources": [
                "css\/width-fix.css"
            ],
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ]
        }
    ]
}