Plauser
A Chrome extension that allows you to play/pause your current playing track from any tab.
Plauser क्या है?
Plauser Kieran O'Neill द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome extension that allows you to play/pause your current playing track from any tab."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Plauser एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Simplex Sigillum Veri... Plauser simply adds a browser button that allows you to play/pause (plause) your current playing music track. You can plause your current track from any browser tab. Plauser supports the following music services: - Google Music - Spotify - YouTube - Grooveshark - SoundCloud - ...more coming soon! What's new in 0.9.1! - Plauser now allows you to bind a keystroke through the options menu. Try it out and start plausing, using the keyboard, from any tab! Source available on GitHub: https://github.com/kieranroneill/plauser
एक्सटेंशन की मूल जानकारी
नाम | Plauser |
ID | knhcbcbmbdififpcffkphaianpojnpai |
आधिकारिक URL | https://chromewebstore.google.com/detail/plauser/knhcbcbmbdififpcffkphaianpojnpai |
विवरण | A Chrome extension that allows you to play/pause your current playing track from any tab. |
फ़ाइल का आकार | 62.78 KB |
स्थापना संख्या | 83 |
वर्तमान संस्करण | 0.9.1 |
अंतिम अपडेट | 2014-10-29 |
प्रकाशन तिथि | 2014-10-29 |
रेटिंग | 5.00/5 कुल 7 रेटिंग्स |
डेवलपर | Kieran O'Neill |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/kieranroneill/plauser |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Plauser", "short_name": "Plauser", "description": "A Chrome extension that allows you to play\/pause your current playing track from any tab.", "version": "0.9.1", "author": "Kieran O'Neill", "permissions": [ "tabs", "storage", "https:\/\/play.google.com\/music\/*", "https:\/\/play.spotify.com\/*", "https:\/\/www.youtube.com\/*", "http:\/\/grooveshark.com\/*", "https:\/\/soundcloud.com\/*" ], "icons": { "16": "images\/icon-plauser-16.png", "48": "images\/icon-plauser-48.png", "128": "images\/icon-plauser-128.png" }, "background": { "page": "background.html" }, "options_page": "options.html", "browser_action": { "default_icon": "images\/icon-plauser-128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content-scripts\/content-script-key-event.js", "js\/global.js" ], "run_at": "document_start" } ] } |