Setify, convert setlists to playlists
Export setlist.fm setlists as Spotify playlists! Works with setify.co to convert setlist.fm setlists to Spotify playlists.
Setify, convert setlists to playlists란 무엇입니까?
Setify, convert setlists to playlists은(는) https://setify.co에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Export setlist.fm setlists as Spotify playlists! Works with setify.co to convert setlist.fm setlists to Spotify playlists."입니다.
확장 프로그램 스크린샷
Setify, convert setlists to playlists 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Setify (setify.co) is an app that makes it easy for you to convert setlist.fm playlists into Spotify playlists. This extension provides a small window on each setlist page of setlist.fm allowing you to convert it with Setify. One of the best features of Setify is that it will tell you which songs are (and aren't!) available on Spotify. It will also tell you which songs are covers not by the searched artist, so you can know exactly how your Spotify playlist is going to look before you save it.
확장 프로그램 기본 정보
이름 | |
ID | fmmipjnkejcpjflkilakfabibfdeepfj |
공식 URL | https://chrome.google.com/webstore/detail/setify-convert-setlists-t/fmmipjnkejcpjflkilakfabibfdeepfj |
설명 | Export setlist.fm setlists as Spotify playlists! Works with setify.co to convert setlist.fm setlists to Spotify playlists. |
파일 크기 | 67.15 KB |
설치 횟수 | 1,000 |
현재 버전 | 0.4 |
최근 업데이트 | 2017-07-10 |
출시 날짜 | 2017-07-10 |
평점 | 5.00/5 총 6 개의 평점 |
개발자 | https://setify.co |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://setify.co/ |
도움말 페이지 URL | https://twitter.com/lawrhol |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Setify, convert setlists to playlists", "description": "Export setlist.fm setlists as Spotify playlists! Works with setify.co to convert setlist.fm setlists to Spotify playlists.", "version": "0.4", "icons": { "16": "[email protected]", "48": "[email protected]", "128": "[email protected]" }, "content_scripts": [ { "matches": [ "*:\/\/www.setlist.fm\/setlist\/*\/*\/*.html" ], "css": [ "style.css" ], "js": [ "jquery.js", "contentscript.js" ] } ], "browser_action": { "default_icon": "icon.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "web_accessible_resources": [ "fonts\/open.woff2", "fonts\/fatface.woff2" ], "permissions": [ "activeTab" ] } |