Power Hour
Allows you to turn a Spotify playlist into a power hour.
O que é Power Hour?
Power Hour é uma extensão do Chrome desenvolvida por ross.michael22, e sua principal característica é "Allows you to turn a Spotify playlist into a power hour.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Power Hour
Baixe arquivos de extensão Power Hour no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | doecnbidkbkagliekcdcmchdnfmacdpm |
URL Oficial | https://chromewebstore.google.com/detail/power-hour/doecnbidkbkagliekcdcmchdnfmacdpm |
Descrição | Allows you to turn a Spotify playlist into a power hour. |
Tamanho do Arquivo | 281 KB |
Contagem de Instalações | 655 |
Versão Atual | 1.0 |
Última Atualização | 2020-05-22 |
Data de Publicação | 2020-05-22 |
Classificação | 3.67/5 Total de 3 Avaliações |
Desenvolvedor | ross.michael22 |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } |