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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        "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
공식 URL 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"
}