HIITify

Customize your favorite Spotify songs to match your HIIT workout with custom BPMs for workout and rest intervals.

Τι είναι το HIITify;

Το HIITify είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον georgieff.ch, και η κύρια λειτουργία του είναι "Customize your favorite Spotify songs to match your HIIT workout with custom BPMs for workout and rest intervals.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης HIITify

Λήψη αρχείων επέκτασης HIITify σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Ever wanted to listen to your favorite Spotify mix during your HIIT (High Intensity Interval Training) training to have the perfect workout?

HIITify is a Spotify extention that allows you to:
● set your desired workout tempo (BPM) and maintains it on all of your songs during the workout
● set the length of each workout and rest interval
● have beep cues for the start and end of each interval
● manually update your song speed to a speed of your choice at any time

Instructions:
1. Make sure you're listening to Spotify on the Spotify Web Player (open.spotify.com).
2. Click the "HIITify" button.
3. Enjoy! If you need HIITify for more than an hour or something goes wrong, click the "HIITify" button again.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα HIITify HIITify
ID bepaliaolnpicokhibkbcoinelekeafa
Επίσημο URL https://chromewebstore.google.com/detail/hiitify/bepaliaolnpicokhibkbcoinelekeafa
Περιγραφή Customize your favorite Spotify songs to match your HIIT workout with custom BPMs for workout and rest intervals.
Μέγεθος Αρχείου 168 KB
Αριθμός Εγκαταστάσεων 20
Τρέχουσα Έκδοση 0.2
Τελευταία Ενημέρωση 2020-06-11
Ημερομηνία Δημοσίευσης 2020-06-11
Αξιολόγηση 4.20/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής georgieff.ch
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HIITify",
    "description": "Customize your favorite Spotify songs to match your HIIT workout with custom BPMs for workout and rest intervals.",
    "version": "0.2",
    "permissions": [
        "storage",
        "identity",
        "https:\/\/*.spotify.com\/*",
        "*:\/\/*.google.com\/*"
    ],
    "web_accessible_resources": [
        "\/oauth2\/*"
    ],
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "icons": {
        "168": "logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "css": [
                "style.css"
            ]
        },
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "jquery-ui.min.js",
                "main-content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2
}