Auto open in the Spotify app
Automatically sends all Spotify URLs to the dedicated Spotify app
什麼是Auto open in the Spotify app?
Auto open in the Spotify app是由Ben Cheshire開發的Chrome擴展程式,該擴展的主要功能是“Automatically sends all Spotify URLs to the dedicated Spotify app”。
擴展截圖
下載Auto open in the Spotify app擴展crx文件
下載Auto open in the Spotify app擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension will automatically send all Spotify URLs to the dedicated Spotify app. Make sure you've installed the official app or it won't work! No persistent background processes will run while this extension is active :)
擴展基本資訊
名稱 | Auto open in the Spotify app |
ID | pkghcmlaendnidgjofmeeaalkiphalkg |
官方網址 | https://chromewebstore.google.com/detail/auto-open-in-the-spotify/pkghcmlaendnidgjofmeeaalkiphalkg |
簡介 | Automatically sends all Spotify URLs to the dedicated Spotify app |
檔案大小 | 41.94 KB |
安裝次數 | 339 |
目前版本 | 1.2.1 |
更新時間 | 2020-12-08 |
上架時間 | 2020-05-23 |
評分 | 5.00/5 共 5 次評分 |
開發者 | Ben Cheshire |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Auto open in the Spotify app", "author": "Ben Cheshire", "short_name": "AoS", "version": "1.2.1", "manifest_version": 2, "description": "Automatically sends all Spotify URLs to the dedicated Spotify app", "browser_action": { "default_icon": { "19": "img\/icon19.png", "38": "img\/icon38.png" } }, "icons": { "16": "img\/icon16.png", "19": "img\/icon19.png", "38": "img\/icon38.png", "48": "img\/icon48.png", "128": "img\/icon128.png", "256": "img\/icon256.png" }, "permissions": [ "storage" ], "background": { "persistent": false, "scripts": [ "1.js" ] }, "options_page": "bFramework\/options.html", "content_scripts": [ { "matches": [ "*:\/\/open.spotify.com\/*", "*:\/\/play.spotify.com\/*" ], "js": [ "2.js" ], "run_at": "document_start" } ], "version_name": "1.2.1", "minimum_chrome_version": "80" } |