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
}