Youtube playback control
Control all youtube tabs from any tab any window.
Vad är Youtube playback control?
Youtube playback control är en Chrome-tillägg utvecklad av Ankit Shah, och dess huvudfunktion är "Control all youtube tabs from any tab any window.".
Tilläggsskärmbilder
Ladda ner Youtube playback control-förlängningens CRX-fil
Ladda ner Youtube playback control-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
This is a chrome extension which will allow you to play, pause or jump to next youtube videos running across all tabs in all windows. Press the row containing title and it toggles the state of tab playing youtube video. You need to reload tabs once after installing the extension. Now also supports jumping to particular tab and closing the tab. The extension is open source so feel free to add any issues or pull requests on https://github.com/shahankit/youtube-playback-control.
Grundläggande Information om Tillägg
Namn | |
ID | okbcoijdeebocmahlanbfemnckjonfnh |
Officiell webbadress | https://chrome.google.com/webstore/detail/youtube-playback-control/okbcoijdeebocmahlanbfemnckjonfnh |
Beskrivning | Control all youtube tabs from any tab any window. |
Filstorlek | 46.5 KB |
Antal Installationer | 582 |
Aktuell Version | 0.1.4 |
Senast Uppdaterad | 2017-09-11 |
Publiceringsdatum | 2017-09-11 |
Betyg | 4.41/5 Totalt 27 Betyg |
Utvecklare | Ankit Shah |
Betalningssätt | free |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube playback control", "version": "0.1.4", "description": "Control all youtube tabs from any tab any window.", "browser_action": { "default_icon": { "19": "assets\/icon.png", "38": "assets\/[email protected]" }, "default_popup": "views\/popup\/index.html", "default_title": "Youtube Tabs" }, "permissions": [ "tabs" ], "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ] } ] } |