Youtube to Premiere pro
Sends the current tab's URL to a local server and to Premiere pro throught Pymiere.
O que é Youtube to Premiere pro?
Youtube to Premiere pro é uma extensão do Chrome desenvolvida por Selgy, e sua principal característica é "Sends the current tab's URL to a local server and to Premiere pro throught Pymiere.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Youtube to Premiere pro
Baixe arquivos de extensão Youtube to Premiere pro no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Youtube to Premiere pro |
ID | lhoepckbiamgobehojaibapoddjpfmfo |
URL Oficial | https://chromewebstore.google.com/detail/youtube-to-premiere-pro/lhoepckbiamgobehojaibapoddjpfmfo |
Descrição | Sends the current tab's URL to a local server and to Premiere pro throught Pymiere. |
Tamanho do Arquivo | 55.12 KB |
Contagem de Instalações | 247 |
Versão Atual | 1.1 |
Última Atualização | 2024-02-02 |
Data de Publicação | 2023-11-04 |
Classificação | 4.33/5 Total de 3 Avaliações |
Desenvolvedor | Selgy |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/Selgy/Youtube-to-PremierePro |
URL da Página de Política de Privacidade | https://docs.google.com/document/d/1PqAeCU8BE499sx5JScJR5IPCKBkOxAlyEZMhA_IJUlw/edit?usp=sharing |
Idiomas Suportados | 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" } } |