Youtube to Premiere pro
Sends the current tab's URL to a local server and to Premiere pro throught Pymiere.
Qu'est-ce que Youtube to Premiere pro ?
Youtube to Premiere pro est une extension Chrome développée par Selgy, et sa fonction principale est "Sends the current tab's URL to a local server and to Premiere pro throught Pymiere.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Youtube to Premiere pro
Téléchargez les fichiers d'extension Youtube to Premiere pro au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Youtube to Premiere pro |
ID | lhoepckbiamgobehojaibapoddjpfmfo |
URL Officiel | https://chromewebstore.google.com/detail/youtube-to-premiere-pro/lhoepckbiamgobehojaibapoddjpfmfo |
Description | Sends the current tab's URL to a local server and to Premiere pro throught Pymiere. |
Taille du Fichier | 55.12 KB |
Nombre d'Installations | 247 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2024-02-02 |
Date de Publication | 2023-11-04 |
Évaluation | 4.33/5 Total 3 Évaluations |
Développeur | Selgy |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Selgy/Youtube-to-PremierePro |
URL de la Page de Politique de Confidentialité | https://docs.google.com/document/d/1PqAeCU8BE499sx5JScJR5IPCKBkOxAlyEZMhA_IJUlw/edit?usp=sharing |
Langues Prises en Charge | 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" } } |