Youtube to Premiere pro
Sends the current tab's URL to a local server and to Premiere pro throught Pymiere.
Co to jest Youtube to Premiere pro?
Youtube to Premiere pro to rozszerzenie Chrome opracowane przez Selgy, a jego główną funkcją jest „Sends the current tab's URL to a local server and to Premiere pro throught Pymiere.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Youtube to Premiere pro
Pobierz pliki rozszerzeń Youtube to Premiere pro 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
Ce projet a été conçu pour simplifier et accélérer le processus d'édition vidéo en permettant l'importation directe de vidéos YouTube dans Adobe Premiere Pro. Avec une simple action, l'utilisateur peut transférer une vidéo de YouTube vers son espace de travail sur Premiere Pro, éliminant ainsi les étapes fastidieuses de téléchargement et d'importation manuelle.
Podstawowe informacje o rozszerzeniu
Nazwa | Youtube to Premiere pro |
ID | lhoepckbiamgobehojaibapoddjpfmfo |
Oficjalny URL | https://chromewebstore.google.com/detail/youtube-to-premiere-pro/lhoepckbiamgobehojaibapoddjpfmfo |
Opis | Sends the current tab's URL to a local server and to Premiere pro throught Pymiere. |
Rozmiar pliku | 55.12 KB |
Liczba instalacji | 247 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2024-02-02 |
Data Publikacji | 2023-11-04 |
Ocena | 4.33/5 Łącznie 3 Oceny |
Deweloper | Selgy |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/Selgy/Youtube-to-PremierePro |
Adres URL Strony Polityki Prywatności | https://docs.google.com/document/d/1PqAeCU8BE499sx5JScJR5IPCKBkOxAlyEZMhA_IJUlw/edit?usp=sharing |
Obsługiwane Języki | fr |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube to Premiere pro", "version": "1.1", "description": "Sends the current tab's URL to a local server and to Premiere pro throught Pymiere.", "permissions": [ "activeTab" ], "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "action": { "default_icon": { "48": "icon.png" }, "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "socket.io.min.js", "content.js", "script.js", "popup.js" ], "run_at": "document_idle" } ], "icons": { "48": "icon.png" } } |