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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Redirects links on web pages to skip loading the 'Spotify Web Player' and go directly to the official desktop app."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Stopify एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}