Plauser
A Chrome extension that allows you to play/pause your current playing track from any tab.
Qu'est-ce que Plauser ?
Plauser est une extension Chrome développée par Kieran O'Neill, et sa fonction principale est "A Chrome extension that allows you to play/pause your current playing track from any tab.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Plauser
Téléchargez les fichiers d'extension Plauser au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Plauser |
ID | knhcbcbmbdififpcffkphaianpojnpai |
URL Officiel | https://chromewebstore.google.com/detail/plauser/knhcbcbmbdififpcffkphaianpojnpai |
Description | A Chrome extension that allows you to play/pause your current playing track from any tab. |
Taille du Fichier | 62.78 KB |
Nombre d'Installations | 83 |
Version Actuelle | 0.9.1 |
Dernière Mise à Jour | 2014-10-29 |
Date de Publication | 2014-10-29 |
Évaluation | 5.00/5 Total 7 Évaluations |
Développeur | Kieran O'Neill |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/kieranroneill/plauser |
Langues Prises en Charge | 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" } ] } |