Stopify
Redirects links on web pages to skip loading the 'Spotify Web Player' and go directly to the official desktop app.
ما هو Stopify؟
Stopify هو إضافة Chrome تم تطويرها بواسطة http://admchrysler.com، والميزة الرئيسية لها هي "Redirects links on web pages to skip loading the 'Spotify Web Player' and go directly to the official desktop app.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Stopify
قم بتنزيل ملفات الامتداد Stopify بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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.
معلومات أساسية عن التمديد
الاسم | |
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" } } |