SpotifySearch

Spotify search button below each video in YouTube

Apa itu SpotifySearch?

SpotifySearch adalah ekstensi Chrome yang dikembangkan oleh sajpo, dan fitur utamanya adalah "Spotify search button below each video in YouTube".

Unduh Berkas CRX Ekstensi SpotifySearch

Unduh file ekstensi SpotifySearch dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        Open any music video in YouTube and click on SpotifySearch icon below the player to search the same song in Spotify! You can also use the search tool from a context menu - just select any text, right-click on it and choose: "Search...".                    

Informasi Dasar Ekstensi

Nama SpotifySearch SpotifySearch
ID bkpidekpgpjkekmgijomcokafajpfebi
URL Resmi https://chrome.google.com/webstore/detail/spotifysearch/bkpidekpgpjkekmgijomcokafajpfebi
Deskripsi Spotify search button below each video in YouTube
Ukuran File 34.46 KB
Jumlah Instalasi 38
Versi Saat Ini 1.3
Terakhir Diperbarui 2017-10-02
Tanggal Publikasi 2017-10-02
Penilaian 5.00/5 Total 2 Penilaian
Pengembang sajpo
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SpotifySearch",
    "description": "Spotify search button below each video in YouTube",
    "version": "1.3",
    "short_name": "SpotifySearch",
    "author": "Sajpo",
    "browser_action": {
        "default_icon": {
            "16": "icon.png"
        }
    },
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "autorun.js"
            ]
        }
    ],
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "contextMenu.js"
        ]
    }
}