Audio Only Youtube

Enables you to disable video streams on youtube and listen audio

Qu'est-ce que Audio Only Youtube ?

Audio Only Youtube est une extension Chrome développée par https://ashishbansal.in, et sa fonction principale est "Enables you to disable video streams on youtube and listen audio".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Audio Only Youtube

Téléchargez les fichiers d'extension Audio Only Youtube au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        "Audio only youtube" chrome extension enables you to disable only video on youtube which saves internet usage more than 50% when you want to listen songs on youtube.

Note: It doesn't support Youtube Live Videos.

You can enable/disable it by just clicking on the icon shown in the extension bar.

Audio only youtube is an open-source project licensed under GPLv3. You can find sources here : 

https://github.com/Ashish-Bansal/audio-only-youtube

Any kind of contributions to the project are welcomed and thanks to all who contributed to this project!                    

Informations de Base sur l'Extension

Nom Audio Only Youtube Audio Only Youtube
ID pkocpiliahoaohbolmkelakpiphnllog
URL Officiel https://chromewebstore.google.com/detail/audio-only-youtube/pkocpiliahoaohbolmkelakpiphnllog
Description Enables you to disable video streams on youtube and listen audio
Taille du Fichier 29.61 KB
Nombre d'Installations 106,265
Version Actuelle 0.10.0
Dernière Mise à Jour 2023-06-25
Date de Publication 2020-05-28
Évaluation 4.18/5 Total 627 Évaluations
Développeur https://ashishbansal.in
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Audio Only Youtube",
    "version": "0.10.0",
    "manifest_version": 3,
    "description": "Enables you to disable video streams on youtube and listen audio",
    "offline_enabled": true,
    "icons": {
        "19": "img\/icon19.png",
        "38": "img\/icon38.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    },
    "permissions": [
        "tabs",
        "webRequest",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/www.youtube.com\/*",
        "*:\/\/music.youtube.com\/*",
        "*:\/\/*.googlevideo.com\/*"
    ],
    "action": {
        "default_title": "Audio Only Youtube"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/music.youtube.com\/*"
            ],
            "js": [
                "js\/content-script.js"
            ],
            "css": [
                "css\/content-script.css"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "options_page": "html\/options.html"
}