Spotify Select

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

Spotify Select là gì?

Spotify Select là một tiện ích mở rộng Chrome được phát triển bởi douglas.sellers, và tính năng chính của nó là "Simple extension that allows highlighted text to be brought easily into Spotify".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Spotify Select

Tải xuống các tệp mở rộng Spotify Select dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Spotify Select Spotify Select
ID jekgbendlapagldnafgbcffcgjlpijmh
URL Chính Thức https://chrome.google.com/webstore/detail/spotify-select/jekgbendlapagldnafgbcffcgjlpijmh
Mô tả Simple extension that allows highlighted text to be brought easily into Spotify
Kích Thước Tệp 5.34 MB
Số Lần Cài Đặt 116
Phiên Bản Hiện Tại 0.1.2
Cập Nhật Lần Cuối 2018-10-14
Ngày Phát Hành 2018-10-11
Đánh Giá 4.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển douglas.sellers
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/douglasjsellers/spotify_select
Ngôn Ngữ Được Hỗ Trợ 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
}