Audio Only Youtube

Enables you to disable video streams on youtube and listen audio

什麼是Audio Only Youtube?

Audio Only Youtube是由https://ashishbansal.in開發的Chrome擴展程式,該擴展的主要功能是“Enables you to disable video streams on youtube and listen audio”。

擴展截圖

screenshot
screenshot

下載Audio Only Youtube擴展crx文件

下載Audio Only Youtube擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        "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!                    

擴展基本資訊

名稱 Audio Only Youtube Audio Only Youtube
ID pkocpiliahoaohbolmkelakpiphnllog
官方網址 https://chromewebstore.google.com/detail/audio-only-youtube/pkocpiliahoaohbolmkelakpiphnllog
簡介 Enables you to disable video streams on youtube and listen audio
檔案大小 29.61 KB
安裝次數 106,265
目前版本 0.10.0
更新時間 2023-06-25
上架時間 2020-05-28
評分 4.18/5 共 627 次評分
開發者 https://ashishbansal.in
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
}