remoteOne
Enables controlling audio / video media (i.e. Youtube, Spotify, SoundCloud and more) across all tabs with a single button
remoteOneคืออะไร?
remoteOne เป็นส่วนขยายของ Chrome ที่พัฒนาโดย maliniak และคุณลักษณะหลักของมันคือ "Enables controlling audio / video media (i.e. Youtube, Spotify, SoundCloud and more) across all tabs with a single button"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย remoteOne
ดาวน์โหลดไฟล์ส่วนขยาย remoteOne ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
It can play, pause, go to next or previous songs on all supported sites. Comes in handy when someone sends you, say, a Youtube video link and you happen to be listening to Spotify at the moment - just hit the appropriate button to pause Spotify without need to switch through the tabs. When you are done with that funny YT cats compilation video, you can simply resume your music :) It is also open source: https://github.com/maliniakh/remoteOne Supported sites: - Youtube - Spotify - SoundCloud - Mixcloud
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | hmkoiabojmciofgiednpjdkfkbfojnki |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/remoteone/hmkoiabojmciofgiednpjdkfkbfojnki |
คำอธิบาย | Enables controlling audio / video media (i.e. Youtube, Spotify, SoundCloud and more) across all tabs with a single button |
ขนาดไฟล์ | 516 KB |
จำนวนการติดตั้ง | 125 |
เวอร์ชันปัจจุบัน | 1.3 |
อัปเดตครั้งล่าสุด | 2017-03-19 |
วันที่เผยแพร่ | 2017-03-19 |
คะแนน | 4.86/5 รวมทั้งหมด 14 คะแนน |
ผู้พัฒนา | maliniak |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/maliniakh/remoteOne |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "remoteOne", "description": "Enables controlling audio \/ video media (i.e. Youtube, Spotify, SoundCloud and more) across all tabs with a single button", "version": "1.3", "browser_action": { "default_icon": "img\/remoteOne19.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "https:\/\/ajax.googleapis.com\/", "bookmarks", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "js": [ "lib\/jquery-2.1.4.min.js", "lib\/purl.js", "lib\/jquery.waitForElement.js", "sites\/site.js", "sites\/youtube.js", "sites\/soundcloud.js", "sites\/mixcloud.js", "sites\/spotify.js", "sites\/mynoise.js", "content-script.js" ], "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/soundcloud.com\/*", "https:\/\/www.mixcloud.com\/*", "https:\/\/play.spotify.com\/*", "http:\/\/mynoise.net\/NoiseMachines\/*" ] } ] } |