SpotifYoutube
Adds a button in Youtube that creates a new tab with Spotify.
Co je SpotifYoutube?
SpotifYoutube je rozšíření Chrome vyvinuté mariannelinharesm, a jeho hlavní funkcí je „Adds a button in Youtube that creates a new tab with Spotify.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření SpotifYoutube
Stáhněte si soubory rozšíření SpotifYoutube ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | |
ID | ankphgpmnicdkehhmnklhlodkfkecjbh |
Oficiální URL | https://chrome.google.com/webstore/detail/spotifyoutube/ankphgpmnicdkehhmnklhlodkfkecjbh |
Popis | Adds a button in Youtube that creates a new tab with Spotify. |
Velikost souboru | 45.4 KB |
Počet instalací | 213 |
Aktuální Verze | 1.0.1 |
Poslední Aktualizace | 2016-09-16 |
Datum Vydání | 2016-09-16 |
Hodnocení | 4.57/5 Celkem 7 Hodnocení |
Vývojář | mariannelinharesm |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/mari-linhares/spotifyoutube/ |
URL Stránky Nápovědy | https://github.com/mari-linhares/spotifyoutube/issues |
Podporované Jazyky | 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" ] } |