remoteOne
Enables controlling audio / video media (i.e. Youtube, Spotify, SoundCloud and more) across all tabs with a single button
remoteOne क्या है?
remoteOne maliniak द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enables controlling audio / video media (i.e. Youtube, Spotify, SoundCloud and more) across all tabs with a single button"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में remoteOne एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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\/*" ] } ] } |