Old Spotify Web UI

Makes the Spotify Web Player (play.spotify.com) revert to the older and more fully featured user interface.

什么是Old Spotify Web UI?

Old Spotify Web UI是由Stephen Beckett开发的Chrome扩展程序,该扩展的主要功能是“Makes the Spotify Web Player (play.spotify.com) revert to the older and more fully featured user interface.”。

扩展截图

screenshot
screenshot

下载Old Spotify Web UI扩展crx文件

下载Old Spotify Web UI扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        *Update* Spotify appear to have fully disabled the old player and there is no workaround that I know of currently. I'll update this plugin if a fix becomes available, but until then the new web player is the only option. Sorry, I did my best, but ultimately it is Spotify's decision.

Please leave a support comment if you're aware of a new fix :)

------

Turns open.spotify.com into the play.spotify.com that you know and love, complete with features such as:
* Radio
* One-click playlist access
* Fully featured search
* And much more!

Disable that new Spotify Web Player and get your music back!

--

How does it work?
Changes your UserAgent so you look like you're using Internet Explorer 11, rather than Chrome. Essentially a more user-friendly implementation of the process described here: https://community.spotify.com/t5/Desktop-Linux-Windows-Web-Player/New-Spotify-Web-Player-Design-NEW-2017-DESIGN-FEEDBACK-IDEAS/m-p/1641377#M184605

Does it change my UserAgent for any other websites?
No. This will only changes your UserAgent on play.spotify.com and open.spotify.com. Will not change your requests to any other websites in any way. 

--

Works while it works, but Spotify may choose to turn off the old interface at any point. If that happens this extension will no longer work. 

Not affiliated with Spotify AB.                    

扩展基本信息

名称 Old Spotify Web UI Old Spotify Web UI
ID emchbnnccfglglkcddapbodejcfnbfbo
官方URL https://chrome.google.com/webstore/detail/old-spotify-web-ui/emchbnnccfglglkcddapbodejcfnbfbo
简介 Makes the Spotify Web Player (play.spotify.com) revert to the older and more fully featured user interface.
文件大小 119 KB
安装次数 235
当前版本 0.1
更新时间 2017-09-08
上架时间 2017-09-08
评分 2.14/5 共7次评分
开发者 Stephen Beckett
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL http://stephenbeckett.co/privacy-policies/chrome-webstore.html
支持的语言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Old Spotify Web UI",
    "description": "Makes the Spotify Web Player (play.spotify.com) revert to the older and more fully featured user interface.",
    "version": "0.1",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/open.spotify.com\/*",
                "https:\/\/open.spotify.com\/*",
                "http:\/\/play.spotify.com\/*",
                "https:\/\/play.spotify.com\/*"
            ],
            "js": [
                "jquery.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_title": "It's Spotify, but old!"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}