Stopify

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

Stopify란 무엇입니까?

Stopify은(는) http://admchrysler.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Redirects links on web pages to skip loading the 'Spotify Web Player' and go directly to the official desktop app."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Stopify 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Stopify Stopify
ID fhncainmahcgdcoejihgbkfopcmoghlc
공식 URL https://chrome.google.com/webstore/detail/stopify/fhncainmahcgdcoejihgbkfopcmoghlc
설명 Redirects links on web pages to skip loading the 'Spotify Web Player' and go directly to the official desktop app.
파일 크기 105 KB
설치 횟수 763
현재 버전 2.1
최근 업데이트 2014-03-31
출시 날짜 2014-03-31
평점 3.07/5 총 14 개의 평점
개발자 http://admchrysler.com
결제 유형 free
확장 프로그램 웹 사이트 http://admchrysler.com/stopify
지원되는 언어 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"
    }
}