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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Stephen Beckett และคุณลักษณะหลักของมันคือ "Makes the Spotify Web Player (play.spotify.com) revert to the older and more fully featured user interface."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Old Spotify Web UI

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}