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 |
公式URL | 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 |
Eメール | [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" ] } |