remoteOne
Enables controlling audio / video media (i.e. Youtube, Spotify, SoundCloud and more) across all tabs with a single button
什麼是remoteOne?
remoteOne是由maliniak開發的Chrome擴展程式,該擴展的主要功能是“Enables controlling audio / video media (i.e. Youtube, Spotify, SoundCloud and more) across all tabs with a single button”。
擴展截圖
下載remoteOne擴展crx文件
下載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 |
官方網址 | 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\/*" ] } ] } |