Power Hour
Allows you to turn a Spotify playlist into a power hour.
什麼是Power Hour?
Power Hour是由ross.michael22開發的Chrome擴展程式,該擴展的主要功能是“Allows you to turn a Spotify playlist into a power hour.”。
擴展截圖
下載Power Hour擴展crx文件
下載Power Hour擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | |
ID | doecnbidkbkagliekcdcmchdnfmacdpm |
官方網址 | https://chromewebstore.google.com/detail/power-hour/doecnbidkbkagliekcdcmchdnfmacdpm |
簡介 | Allows you to turn a Spotify playlist into a power hour. |
檔案大小 | 281 KB |
安裝次數 | 655 |
目前版本 | 1.0 |
更新時間 | 2020-05-22 |
上架時間 | 2020-05-22 |
評分 | 3.67/5 共 3 次評分 |
開發者 | ross.michael22 |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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" ] } |