Power Hour
Allows you to turn a Spotify playlist into a power hour.
Power Hour क्या है?
Power Hour ross.michael22 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to turn a Spotify playlist into a power hour."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Power Hour एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } |