Power Hour

Allows you to turn a Spotify playlist into a power hour.

Was ist Power Hour?

Power Hour ist eine Chrome-Erweiterung, die von ross.michael22 entwickelt wurde, und ihr Hauptmerkmal ist "Allows you to turn a Spotify playlist into a power hour.".

Erweiterungsscreenshots

screenshot

Power Hour-Erweiterungs-CRX-Datei herunterladen

Laden Sie Power Hour-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Power Hour Power Hour
ID doecnbidkbkagliekcdcmchdnfmacdpm
Offizielle URL https://chromewebstore.google.com/detail/power-hour/doecnbidkbkagliekcdcmchdnfmacdpm
Beschreibung Allows you to turn a Spotify playlist into a power hour.
Dateigröße 281 KB
Installationsanzahl 655
Aktuelle Version 1.0
Letztes Update 2020-05-22
Veröffentlichungsdatum 2020-05-22
Bewertung 3.67/5 Insgesamt 3 Bewertungen
Entwickler ross.michael22
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}