playpause
Pause and play again your music
Qu'est-ce que playpause ?
playpause est une extension Chrome développée par Deliaz, et sa fonction principale est "Pause and play again your music".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension playpause
Téléchargez les fichiers d'extension playpause 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
PlayPause is a small button which allows to your music and video on pause and then play again. Currently supports: – YouTube.com – SoundCloud.com – PromoDJ.com It can be more effective if you will set keyboard shortcut on the button in your Chrome Extension page.
Informations de Base sur l'Extension
Nom | playpause |
ID | nphcoecmaigjlaadabjihhoaiaopcadk |
URL Officiel | https://chromewebstore.google.com/detail/playpause/nphcoecmaigjlaadabjihhoaiaopcadk |
Description | Pause and play again your music |
Taille du Fichier | 10.48 KB |
Nombre d'Installations | 72 |
Version Actuelle | 2.0.1 |
Dernière Mise à Jour | 2018-09-11 |
Date de Publication | 2018-09-10 |
Évaluation | 5.00/5 Total 5 Évaluations |
Développeur | Deliaz |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/deliaz/playpause |
URL de la Page de Politique de Confidentialité | https://clipboardextension.com/policy.html |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "playpause", "version": "2.0.1", "description": "Pause and play again your music", "permissions": [ "tabs", "*:\/\/promodj.com\/*", "*:\/\/*.youtube.com\/*", "*:\/\/soundcloud.com\/*" ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "imgs\/38.png" }, "icons": { "16": "imgs\/16.png", "48": "imgs\/48.png", "128": "imgs\/128.png" }, "content_scripts": [ { "matches": [ "*:\/\/promodj.com\/*" ], "js": [ "content-script.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "inject.js" ] } |