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」です。
拡張機能のスクリーンショット
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! 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
} | |