Power Hour
Allows you to turn a Spotify playlist into a power hour.
Qu'est-ce que Power Hour ?
Power Hour est une extension Chrome développée par ross.michael22, et sa fonction principale est "Allows you to turn a Spotify playlist into a power hour.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Power Hour
Téléchargez les fichiers d'extension Power Hour 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
This simple chrome extension allows you to turn a Spotify playlist into a power hour. Just install the plugin, navigate to the Spotify web player, and at the top of the screen you will see the logo for this extension and a few basic settings (on/off, notifications on/off, etc). While the box is checked, the next song will be triggered every 60 seconds (with a short notification) and a counter will keep track of your progress. If you want to disable the sound effect between songs, just click the bell icon to turn them off. You can also use the slider to adjust the volume of the sound effect between songs.
Informations de Base sur l'Extension
Nom | |
ID | doecnbidkbkagliekcdcmchdnfmacdpm |
URL Officiel | https://chromewebstore.google.com/detail/power-hour/doecnbidkbkagliekcdcmchdnfmacdpm |
Description | Allows you to turn a Spotify playlist into a power hour. |
Taille du Fichier | 281 KB |
Nombre d'Installations | 655 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2020-05-22 |
Date de Publication | 2020-05-22 |
Évaluation | 3.67/5 Total 3 Évaluations |
Développeur | ross.michael22 |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Power Hour", "description": "Allows you to turn a Spotify playlist into a power hour.", "version": "1.0", "icons": { "128": "hourglass_128.png", "512": "hourglass_512.png" }, "content_scripts": [ { "all_frames": true, "js": [ "jquery.js", "app.js" ], "matches": [ "https:\/\/open.spotify.com\/*", "http:\/\/open.spotify.com\/*" ], "css": [ "styles.css" ], "run_at": "document_start" } ], "permissions": [ "http:\/\/*.spotify.com\/*", "https:\/\/*.spotify.com\/*" ], "web_accessible_resources": [ "horse.mp3", "wasted.ogg", "shots.ogg", "shots2.ogg", "bell.png", "bell_off.png", "bell_off2.png", "hourglass_128.png", "hourglass_512.png" ] } |