Audio Only Youtube

Enables you to disable video streams on youtube and listen audio

Audio Only Youtube là gì?

Audio Only Youtube là một tiện ích mở rộng Chrome được phát triển bởi https://ashishbansal.in, và tính năng chính của nó là "Enables you to disable video streams on youtube and listen audio".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Audio Only Youtube

Tải xuống các tệp mở rộng Audio Only Youtube dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Audio Only Youtube Audio Only Youtube
ID pkocpiliahoaohbolmkelakpiphnllog
URL Chính Thức https://chromewebstore.google.com/detail/audio-only-youtube/pkocpiliahoaohbolmkelakpiphnllog
Mô tả Enables you to disable video streams on youtube and listen audio
Kích Thước Tệp 29.61 KB
Số Lần Cài Đặt 106,265
Phiên Bản Hiện Tại 0.10.0
Cập Nhật Lần Cuối 2023-06-25
Ngày Phát Hành 2020-05-28
Đánh Giá 4.18/5 Tổng số 627 Đánh Giá
Nhà Phát Triển https://ashishbansal.in
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}