SpotifYoutube

Adds a button in Youtube that creates a new tab with Spotify.

ما هو SpotifYoutube؟

SpotifYoutube هو إضافة Chrome تم تطويرها بواسطة mariannelinharesm، والميزة الرئيسية لها هي "Adds a button in Youtube that creates a new tab with Spotify.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة SpotifYoutube

قم بتنزيل ملفات الامتداد SpotifYoutube بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        SpotifYoutube is a chrome extension that connects youtube with spotify through a button that allows users to go to music videos from Youtube to  musics, albums or bands in Spotify.

Project: https://github.com/mari-linhares/spotifyoutube
Like it? Show support in Chrome Web Store and also in the project repository.
Bugs? Report here: https://github.com/mari-linhares/spotifyoutube/issues                    

معلومات أساسية عن التمديد

الاسم SpotifYoutube SpotifYoutube
ID ankphgpmnicdkehhmnklhlodkfkecjbh
عنوان URL الرسمي https://chrome.google.com/webstore/detail/spotifyoutube/ankphgpmnicdkehhmnklhlodkfkecjbh
الوصف Adds a button in Youtube that creates a new tab with Spotify.
حجم الملف 45.4 KB
عدد التثبيتات 213
النسخة الحالية 1.0.1
آخر تحديث 2016-09-16
تاريخ النشر 2016-09-16
تقييم 4.57/5 مجموع تقييمات 7
المطور mariannelinharesm
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/mari-linhares/spotifyoutube/
عنوان صفحة المساعدة https://github.com/mari-linhares/spotifyoutube/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SpotifYoutube",
    "version": "1.0.1",
    "homepage_url": "https:\/\/github.com\/mari-linhares\/spotifyoutube",
    "manifest_version": 2,
    "description": "Adds a button in Youtube that creates a new tab with Spotify.",
    "icons": {
        "16": "icons\/icon.png",
        "48": "icons\/icon.png",
        "128": "icons\/icon.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_title": "Spotify button on youtube"
    },
    "background": {
        "page": "src\/background\/background.html",
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "css": [
                "src\/script\/script.css"
            ],
            "js": [
                "src\/libs\/jquery.js",
                "src\/script\/script.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "https:\/\/*.youtube.com\/*"
    ],
    "web_accessible_resources": [
        "src\/images\/*.png"
    ]
}