Spotify Playback Speed Access

Adds ability to change song speed with an input next to the volume slider.

Spotify Playback Speed Accessとは何ですか?

Spotify Playback Speed Accessはnohup.or.disownによって開発されたChromeの拡張機能で、その主な機能は「Adds ability to change song speed with an input next to the volume slider.」です。

拡張機能のスクリーンショット

screenshot

Spotify Playback Speed Access拡張機能のCRXファイルをダウンロード

Spotify Playback Speed Access拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        IMPORTANT: Refresh if it doesn't show up!
The extension is open source so feel free to look at the heavily commented code on github here https://github.com/intOrfloat/spotitySpeedExtension

Version 1.6:
 -Fix issue where speed input would sometimes not appear(race condition with loading dom)
 -Fixed issue where free version of spotify would load too quickly and cause the extension to load after spotify's scripts :'D btw ublock origin extension removes spotify ads

Version 1.5:
 -Added redundancy to ensure the extension loads
 -Spotify started randomly using 

拡張機能の基本情報

名前 Spotify Playback Speed Access Spotify Playback Speed Access
ID cgbihpjbhpdfbdckcabcniojdhcgblhd
公式URL https://chrome.google.com/webstore/detail/spotify-playback-speed-ac/cgbihpjbhpdfbdckcabcniojdhcgblhd
説明 Adds ability to change song speed with an input next to the volume slider.
ファイルサイズ 13.33 KB
インストール数 24,075
現在のバージョン 1.6
最終更新日 2019-10-08
公開日 2019-10-08
評価 3.06/5 合計 157 レビュー
開発者 nohup.or.disown
支払い方法 free
拡張機能のウェブサイト https://github.com/intOrfloat/spotitySpeedExtension
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotify Playback Speed Access",
    "description": "Adds ability to change song speed with an input next to the volume slider.",
    "version": "1.6",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "speed16.png",
        "48": "speed48.png",
        "128": "speed128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "manifest_version": 2
}