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."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SpotifYoutube
ดาวน์โหลดไฟล์ส่วนขยาย SpotifYoutube ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
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/ |
URL หน้าช่วยเหลือ | 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" ] } |