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.”。
扩展截图
下载Stopify扩展crx文件
下载Stopify扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
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" } } |