Stopify

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

Qu'est-ce que Stopify ?

Stopify est une extension Chrome développée par http://admchrysler.com, et sa fonction principale est "Redirects links on web pages to skip loading the 'Spotify Web Player' and go directly to the official desktop app.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Stopify

Téléchargez les fichiers d'extension Stopify au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Stopify Stopify
ID fhncainmahcgdcoejihgbkfopcmoghlc
URL Officiel https://chrome.google.com/webstore/detail/stopify/fhncainmahcgdcoejihgbkfopcmoghlc
Description Redirects links on web pages to skip loading the 'Spotify Web Player' and go directly to the official desktop app.
Taille du Fichier 105 KB
Nombre d'Installations 763
Version Actuelle 2.1
Dernière Mise à Jour 2014-03-31
Date de Publication 2014-03-31
Évaluation 3.07/5 Total 14 Évaluations
Développeur http://admchrysler.com
Type de Paiement free
Site Web de l'Extension http://admchrysler.com/stopify
Langues Prises en Charge 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"
    }
}