Stopify

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

¿Qué es Stopify?

Stopify es una extensión de Chrome desarrollada por http://admchrysler.com, y su función principal es "Redirects links on web pages to skip loading the 'Spotify Web Player' and go directly to the official desktop app.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Stopify

Descarga archivos de extensión Stopify en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Stopify Stopify
ID fhncainmahcgdcoejihgbkfopcmoghlc
URL Oficial https://chrome.google.com/webstore/detail/stopify/fhncainmahcgdcoejihgbkfopcmoghlc
Descripción Redirects links on web pages to skip loading the 'Spotify Web Player' and go directly to the official desktop app.
Tamaño del Archivo 105 KB
Cantidad de Instalaciones 763
Versión Actual 2.1
Última Actualización 2014-03-31
Fecha de Publicación 2014-03-31
Calificación 3.07/5 Total de 14 Calificaciones
Desarrollador http://admchrysler.com
Tipo de Pago free
Sitio Web de la Extensión http://admchrysler.com/stopify
Idiomas Soportados 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"
    }
}