HIITify

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

O que é HIITify?

HIITify é uma extensão do Chrome desenvolvida por georgieff.ch, e sua principal característica é "Customize your favorite Spotify songs to match your HIIT workout with custom BPMs for workout and rest intervals.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão HIITify

Baixe arquivos de extensão HIITify no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome HIITify HIITify
ID bepaliaolnpicokhibkbcoinelekeafa
URL Oficial https://chromewebstore.google.com/detail/hiitify/bepaliaolnpicokhibkbcoinelekeafa
Descrição Customize your favorite Spotify songs to match your HIIT workout with custom BPMs for workout and rest intervals.
Tamanho do Arquivo 168 KB
Contagem de Instalações 20
Versão Atual 0.2
Última Atualização 2020-06-11
Data de Publicação 2020-06-11
Classificação 4.20/5 Total de 5 Avaliações
Desenvolvedor georgieff.ch
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
}