Simple Auto HD (Open Source)

Simple Auto HD quality selector for YouTube. Up to 8k/4k (60fps/50fps/48fps/30fps) supported. Theater mode.

Cos'è Simple Auto HD (Open Source)?

Simple Auto HD (Open Source) è un'estensione di Chrome sviluppata da sameernyaupane, e la sua funzione principale è "Simple Auto HD quality selector for YouTube. Up to 8k/4k (60fps/50fps/48fps/30fps) supported. Theater mode.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Simple Auto HD (Open Source)

Scarica i file di estensione Simple Auto HD (Open Source) 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

                        ✔ Lightweight and efficient

✔ Fully open source: https://github.com/sameernyaupane/simple-auto-hd

✔ No tracking, or any user data collection.

✔ Supports up to 8k quality and (60fps/50fps/48fps/30fps) modes

✔ Option to Select best available quality automatically                    

Informazioni di Base sull'Estensione

Nome Simple Auto HD (Open Source) Simple Auto HD (Open Source)
ID jnofiabkigekemighcdaejlpgdhmbaog
URL Ufficiale https://chromewebstore.google.com/detail/simple-auto-hd-open-sourc/jnofiabkigekemighcdaejlpgdhmbaog
Descrizione Simple Auto HD quality selector for YouTube. Up to 8k/4k (60fps/50fps/48fps/30fps) supported. Theater mode.
Dimensione del File 51.88 KB
Conteggio Installazioni 1,832
Versione Corrente 2.0.5
Ultimo Aggiornamento 2023-06-13
Data di Pubblicazione 2019-12-19
Valutazione 4.49/5 Totale 41 Valutazioni
Sviluppatore sameernyaupane
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/sameernyaupane/simple-auto-hd
URL della Pagina di Aiuto https://github.com/sameernyaupane/simple-auto-hd
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Simple Auto HD (Open Source)",
    "description": "Simple Auto HD quality selector for YouTube. Up to 8k\/4k (60fps\/50fps\/48fps\/30fps) supported. Theater mode.",
    "version": "2.0.5",
    "author": "Sameer Nyaupane",
    "icons": {
        "16": "sahd-16.png",
        "48": "sahd-48.png",
        "128": "sahd-128.png"
    },
    "action": {
        "default_title": "Simple Auto HD",
        "default_icon": "sahd-16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "exclude_globs": [
                "*\/embed\/*",
                "*\/tv#\/*",
                "*\/tv\/*"
            ],
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/www.youtube.com\/*"
    ]
}