Stopify

Redirects links on web pages to skip loading the 'Spotify Web Player' and go directly to the official desktop app.

Stopify là gì?

Stopify là một tiện ích mở rộng Chrome được phát triển bởi http://admchrysler.com, và tính năng chính của nó là "Redirects links on web pages to skip loading the 'Spotify Web Player' and go directly to the official desktop app.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Stopify

Tải xuống các tệp mở rộng Stopify dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Redirects links on web pages to skip loading the 'Spotify Web Player' and go directly to the official desktop app.  If for whatever reason the web player does load an icon appears in the address bar that will perform the redirect once clicked.

****MUST CHECK "Allow Spotify to be started from the Web" IN SPOTIFY DESKTOP APP PREFERENCES! ****

CHANGELOG: 

Version 2.1 2014-04-31
----------------------
- Removes tracking parameters from URLs which was preventing some links from working.

Version 2.0.1 2013-07-17
----------------------
- Added page action icon on web player page
- Changed name from "Goodbye Spotify Web Player" to "Stopify" 

Version 1.0.2 2013-07-14
----------------------
- removed target attribute from spotify link so unnecessary window doesn't open.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Stopify Stopify
ID fhncainmahcgdcoejihgbkfopcmoghlc
URL Chính Thức https://chrome.google.com/webstore/detail/stopify/fhncainmahcgdcoejihgbkfopcmoghlc
Mô tả Redirects links on web pages to skip loading the 'Spotify Web Player' and go directly to the official desktop app.
Kích Thước Tệp 105 KB
Số Lần Cài Đặt 763
Phiên Bản Hiện Tại 2.1
Cập Nhật Lần Cuối 2014-03-31
Ngày Phát Hành 2014-03-31
Đánh Giá 3.07/5 Tổng số 14 Đánh Giá
Nhà Phát Triển http://admchrysler.com
Loại Thanh Toán free
Trang Web Mở Rộng http://admchrysler.com/stopify
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stopify",
    "description": "Redirects links on web pages to skip loading the 'Spotify Web Player' and go directly to the official desktop app.",
    "version": "2.1",
    "homepage_url": "http:\/\/admchrysler.com",
    "background": {
        "scripts": [
            "pageaction.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "jquery-1.4.4.js",
                "contentscript.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "webRequest"
    ],
    "page_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "Stopify"
    },
    "icons": {
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}