Youtube to Premiere pro
Sends the current tab's URL to a local server and to Premiere pro throught Pymiere.
Cos'è Youtube to Premiere pro?
Youtube to Premiere pro è un'estensione di Chrome sviluppata da Selgy, e la sua funzione principale è "Sends the current tab's URL to a local server and to Premiere pro throught Pymiere.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Youtube to Premiere pro
Scarica i file di estensione Youtube to Premiere pro in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Youtube to Premiere pro |
ID | lhoepckbiamgobehojaibapoddjpfmfo |
URL Ufficiale | https://chromewebstore.google.com/detail/youtube-to-premiere-pro/lhoepckbiamgobehojaibapoddjpfmfo |
Descrizione | Sends the current tab's URL to a local server and to Premiere pro throught Pymiere. |
Dimensione del File | 55.12 KB |
Conteggio Installazioni | 247 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2024-02-02 |
Data di Pubblicazione | 2023-11-04 |
Valutazione | 4.33/5 Totale 3 Valutazioni |
Sviluppatore | Selgy |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/Selgy/Youtube-to-PremierePro |
URL della Pagina della Politica sulla Privacy | https://docs.google.com/document/d/1PqAeCU8BE499sx5JScJR5IPCKBkOxAlyEZMhA_IJUlw/edit?usp=sharing |
Lingue Supportate | 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" } } |