Power Hour
Allows you to turn a Spotify playlist into a power hour.
Power Hourคืออะไร?
Power Hour เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ross.michael22 และคุณลักษณะหลักของมันคือ "Allows you to turn a Spotify playlist into a power hour."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Power Hour
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" ] } |