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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
        ]
    }
}