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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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" } |