Power Hour
Allows you to turn a Spotify playlist into a power hour.
Power Hour là gì?
Power Hour là một tiện ích mở rộng Chrome được phát triển bởi ross.michael22, và tính năng chính của nó là "Allows you to turn a Spotify playlist into a power hour.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Power Hour
Tải xuống các tệp mở rộng Power Hour dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | doecnbidkbkagliekcdcmchdnfmacdpm |
URL Chính Thức | https://chromewebstore.google.com/detail/power-hour/doecnbidkbkagliekcdcmchdnfmacdpm |
Mô tả | Allows you to turn a Spotify playlist into a power hour. |
Kích Thước Tệp | 281 KB |
Số Lần Cài Đặt | 655 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2020-05-22 |
Ngày Phát Hành | 2020-05-22 |
Đánh Giá | 3.67/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | ross.michael22 |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |