Power Hour
Allows you to turn a Spotify playlist into a power hour.
¿Qué es Power Hour?
Power Hour es una extensión de Chrome desarrollada por ross.michael22, y su función principal es "Allows you to turn a Spotify playlist into a power hour.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Power Hour
Descarga archivos de extensión Power Hour en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | |
ID | doecnbidkbkagliekcdcmchdnfmacdpm |
URL Oficial | https://chromewebstore.google.com/detail/power-hour/doecnbidkbkagliekcdcmchdnfmacdpm |
Descripción | Allows you to turn a Spotify playlist into a power hour. |
Tamaño del Archivo | 281 KB |
Cantidad de Instalaciones | 655 |
Versión Actual | 1.0 |
Última Actualización | 2020-05-22 |
Fecha de Publicación | 2020-05-22 |
Calificación | 3.67/5 Total de 3 Calificaciones |
Desarrollador | ross.michael22 |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } |