Spotify Playback Speed

Adds A Button And Menu To Control Playback Speed On Spotify Web Player

Что такое Spotify Playback Speed?

Spotify Playback Speed - это расширение Chrome, разработанное https://spotifyplaybackspeed.com, и его основная функция - "Adds A Button And Menu To Control Playback Speed On Spotify Web Player".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Spotify Playback Speed

Скачайте файлы расширений Spotify Playback Speed в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Spotify Playback Speed Extension Allows You To Change Playback Speed Of  A Song On Spotify™ Web Player.

Installation Instructions:

1. Click on “Add to Chrome” button.
2. Then, click on “Add Extension” button prompted on screen.
3. Click on “Puzzle” icon on right hand side of Chrome bar.
4. Pin the extension as it should be blue pin in front of the extension name “Spotify Playback Speed”.
5. Play the music on open.spotify.com and you will find the icon of Playback Speed in Web Player.

DISCLAIMER:

Spotify is a trademark of Spotify Technology S.A., registered in the U.S. and other countries. This extension is an independent project and has no relationship to Spotify or Spotify Technology S.A.

This extension is against Spotify's Terms of Service.                    

Основная информация о расширении

Название Spotify Playback Speed Spotify Playback Speed
ID plgdnekhipcapjfnioehiffiionkleao
Официальный URL https://chromewebstore.google.com/detail/spotify-playback-speed/plgdnekhipcapjfnioehiffiionkleao
Описание Adds A Button And Menu To Control Playback Speed On Spotify Web Player
Размер файла 159 KB
Количество установок 1,031
Текущая Версия 1.0.1
Последнее Обновление 2023-07-19
Дата публикации 2023-01-15
Рейтинг 4.82/5 Всего 38 оценок
Разработчик https://spotifyplaybackspeed.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.spotifyplaybackspeed.com/
URL страницы помощи https://www.spotifyplaybackspeed.com/
Поддерживаемые языки de,en,en-GB,en-US,fr,sw,nl,no,vi,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "default_locale": "en",
    "version": "1.0.1",
    "manifest_version": 3,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "action": {
        "default_icon": "icon128.png",
        "default_title": "__MSG_name__"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "content-script.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "resources": [
                "script.js"
            ]
        }
    ]
}