Spotify Select

Simple extension that allows highlighted text to be brought easily into Spotify

Spotify Select란 무엇입니까?

Spotify Select은(는) douglas.sellers에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple extension that allows highlighted text to be brought easily into Spotify"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Spotify Select 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        An extension that allows you to take text off a web page and play that text in Spotify as a song or Album.  The way it works is to add a "Spotify Select" option to you right click menu.  After highlighting/selecting text on a page you can right click and choose to a number of options from the "Spotify Select" right click menu:

1.  Play Highlighted Song - Takes the highlighted text, assumes it's a song, searches for that song on Spotify and then plays that song in your Spotify App.
2.  Play Highlighted Album - Takes the highlighted text, assumes it's a album, searches for that album on Spotify and then plays the whole album in your Spotify App.
3.  Play Most Popular Song on Highlighted Album - Takes the highlighted text, assumes it's an album, finds all the tracks on Spotify, selects the most popular one (as defined by Spotify) and plays it in your Spotify App.
4.  Send Highlighted List of Songs to Spotify Playlist - Takes a the highlighted text, assumes it's a list of songs, tries to find each of the songs in the list in Spotify and adds it to a playlist called "Spotify Select".  If this playlist doesn't exist, it is created.  Nothing is automatically played.

When you first highlight an item and try to use "Spotify Select" you will be asked to login to Spotify.                    

확장 프로그램 기본 정보

이름 Spotify Select Spotify Select
ID jekgbendlapagldnafgbcffcgjlpijmh
공식 URL https://chrome.google.com/webstore/detail/spotify-select/jekgbendlapagldnafgbcffcgjlpijmh
설명 Simple extension that allows highlighted text to be brought easily into Spotify
파일 크기 5.34 MB
설치 횟수 116
현재 버전 0.1.2
최근 업데이트 2018-10-14
출시 날짜 2018-10-11
평점 4.50/5 총 2 개의 평점
개발자 douglas.sellers
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/douglasjsellers/spotify_select
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotify Select",
    "description": "Simple extension that allows highlighted text to be brought easily into Spotify",
    "version": "0.1.2",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "contextMenus",
        "tabs",
        "identity",
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "popup.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "spotify.js",
            "selection.js",
            "spotify_atoms.js",
            "oauth.js"
        ]
    },
    "externally_connectable": {
        "ids": [
            "*"
        ],
        "matches": [
            "*:\/\/*.reddit.com\/*"
        ]
    },
    "manifest_version": 2
}