YouTube: Play Only Audio
Turn off video of any YouTube video and play only its audio.
Vad är YouTube: Play Only Audio?
YouTube: Play Only Audio är en Chrome-tillägg utvecklad av https://dhaval.xyz, och dess huvudfunktion är "Turn off video of any YouTube video and play only its audio.".
Tilläggsskärmbilder
Ladda ner YouTube: Play Only Audio-förlängningens CRX-fil
Ladda ner YouTube: Play Only Audio-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Adds a "VIDEO: ON/OFF" toggle button to the YouTube video player to allow you to quickly and easily turn off video of any YouTube video and play only its audio. This extension works on individual tabs meaning you can disable video playback in one window or tab and have it enabled in another. Note: Ad-blocking software might affect the functioning of this extension. This extension may not work with live videos.
Grundläggande Information om Tillägg
Namn | YouTube: Play Only Audio |
ID | abbndgdlfmdnhpnjpbeeioojnbfcakmo |
Officiell webbadress | https://chromewebstore.google.com/detail/youtube-play-only-audio/abbndgdlfmdnhpnjpbeeioojnbfcakmo |
Beskrivning | Turn off video of any YouTube video and play only its audio. |
Filstorlek | 11.6 KB |
Antal Installationer | 33 |
Aktuell Version | 1.0.5 |
Senast Uppdaterad | 2021-01-14 |
Publiceringsdatum | 2021-01-10 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | https://dhaval.xyz |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube: Play Only Audio", "version": "1.0.5", "description": "Turn off video of any YouTube video and play only its audio.", "permissions": [ "webRequest", "*:\/\/www.youtube.com\/*", "*:\/\/*.googlevideo.com\/*" ], "icons": { "16": "assets\/[email protected]", "32": "assets\/[email protected]", "48": "assets\/[email protected]", "96": "assets\/[email protected]", "128": "assets\/[email protected]" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "youtube.js" ], "run_at": "document_start" } ] } |