YouTube to iTunes
Opens songs on YouTube directly in iTunes
Co to jest YouTube to iTunes?
YouTube to iTunes to rozszerzenie Chrome opracowane przez colecrouter1, a jego główną funkcją jest „Opens songs on YouTube directly in iTunes”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia YouTube to iTunes
Pobierz pliki rozszerzeń YouTube to iTunes w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Simple Extension that finds the song you're listening to on YouTube, and opens it in iTunes. Press the button on the extension to view the button.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | ljpocmpfgngfnfjgjeekeoeigdmjhikm |
Oficjalny URL | https://chrome.google.com/webstore/detail/youtube-to-itunes/ljpocmpfgngfnfjgjeekeoeigdmjhikm |
Opis | Opens songs on YouTube directly in iTunes |
Rozmiar pliku | 281 KB |
Liczba instalacji | 1,000 |
Aktualna Wersja | 0.4 |
Ostatnia Aktualizacja | 2019-03-04 |
Data Publikacji | 2019-03-04 |
Ocena | 3.60/5 Łącznie 5 Oceny |
Deweloper | colecrouter1 |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube to iTunes", "manifest_version": 2, "version": "0.4", "description": "Opens songs on YouTube directly in iTunes", "icons": [], "browser_action": { "default_icon": "icons\/apple.png", "default_popup": "popup.html" }, "background": { "persistent": false, "page": "background.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch*" ], "js": [ "jquery.js", "itunes1.js", "itunes2.js", "script.js" ] } ], "permissions": [ "tabs", "storage", "http:\/\/*\/" ] } |