SpotifySearch

Spotify search button below each video in YouTube

SpotifySearchคืออะไร?

SpotifySearch เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sajpo และคุณลักษณะหลักของมันคือ "Spotify search button below each video in YouTube"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SpotifySearch

ดาวน์โหลดไฟล์ส่วนขยาย SpotifySearch ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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...".                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ SpotifySearch SpotifySearch
ID bkpidekpgpjkekmgijomcokafajpfebi
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/spotifysearch/bkpidekpgpjkekmgijomcokafajpfebi
คำอธิบาย Spotify search button below each video in YouTube
ขนาดไฟล์ 34.46 KB
จำนวนการติดตั้ง 38
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2017-10-02
วันที่เผยแพร่ 2017-10-02
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา sajpo
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
        ]
    }
}