Spotify URL Parser
Converts Spotify URLs into URIs and opens them in the Spotify app.
什么是Spotify URL Parser?
Spotify URL Parser是由Travis Straub开发的Chrome扩展程序,该扩展的主要功能是“Converts Spotify URLs into URIs and opens them in the Spotify app.”。
扩展截图
下载Spotify URL Parser扩展crx文件
下载Spotify URL Parser扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
When you click on a Spotify link wherever it may be, it brings you to the Spotify website, and from there you have to click 4-5 separate times to get the link to open in the desktop app. This extension converts the Spotify URL to the Spotify URI and opens in Spotify automatically. The first time you run the extension, it will ask you where you want to open it, if you select "Spotify" and tell it not to ask you again, Spotify will open automatically when a link is clicked.
扩展基本信息
名称 | Spotify URL Parser |
ID | ifanbdlamoiiaklibabmofmckkjgfmon |
官方URL | https://chromewebstore.google.com/detail/spotify-url-parser/ifanbdlamoiiaklibabmofmckkjgfmon |
简介 | Converts Spotify URLs into URIs and opens them in the Spotify app. |
文件大小 | 10.6 KB |
安装次数 | 43 |
当前版本 | 1.0 |
更新时间 | 2020-02-02 |
上架时间 | 2020-02-01 |
评分 | 5.00/5 共1次评分 |
开发者 | Travis Straub |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://tstraub.io |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Spotify URL Parser", "version": "1.0", "description": "Converts Spotify URLs into URIs and opens them in the Spotify app.", "icons": { "48": "icons\/sup48.png", "96": "icons\/sup96.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.spotify.com\/*" ], "js": [ "SpotifyURLParser.js" ] } ] } |