Youtube to Premiere pro
Sends the current tab's URL to a local server and to Premiere pro throught Pymiere.
Vad är Youtube to Premiere pro?
Youtube to Premiere pro är en Chrome-tillägg utvecklad av Selgy, och dess huvudfunktion är "Sends the current tab's URL to a local server and to Premiere pro throught Pymiere.".
Tilläggsskärmbilder
Ladda ner Youtube to Premiere pro-förlängningens CRX-fil
Ladda ner Youtube to Premiere pro-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Youtube to Premiere pro |
ID | lhoepckbiamgobehojaibapoddjpfmfo |
Officiell webbadress | https://chromewebstore.google.com/detail/youtube-to-premiere-pro/lhoepckbiamgobehojaibapoddjpfmfo |
Beskrivning | Sends the current tab's URL to a local server and to Premiere pro throught Pymiere. |
Filstorlek | 55.12 KB |
Antal Installationer | 247 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2024-02-02 |
Publiceringsdatum | 2023-11-04 |
Betyg | 4.33/5 Totalt 3 Betyg |
Utvecklare | Selgy |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/Selgy/Youtube-to-PremierePro |
URL till Sekretesspolicy Sidan | https://docs.google.com/document/d/1PqAeCU8BE499sx5JScJR5IPCKBkOxAlyEZMhA_IJUlw/edit?usp=sharing |
Stödda Språk | 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" } } |