Youtube playback control
Control all youtube tabs from any tab any window.
ما هو Youtube playback control؟
Youtube playback control هو إضافة Chrome تم تطويرها بواسطة Ankit Shah، والميزة الرئيسية لها هي "Control all youtube tabs from any tab any window.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Youtube playback control
قم بتنزيل ملفات الامتداد Youtube playback control بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | Youtube playback control |
ID | okbcoijdeebocmahlanbfemnckjonfnh |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/youtube-playback-control/okbcoijdeebocmahlanbfemnckjonfnh |
الوصف | Control all youtube tabs from any tab any window. |
حجم الملف | 46.5 KB |
عدد التثبيتات | 582 |
النسخة الحالية | 0.1.4 |
آخر تحديث | 2017-09-11 |
تاريخ النشر | 2017-09-11 |
تقييم | 4.41/5 مجموع تقييمات 27 |
المطور | Ankit Shah |
نوع الدفع | free |
اللغات المدعومة | 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" ] } ] } |