Youtube to Premiere pro
Sends the current tab's URL to a local server and to Premiere pro throught Pymiere.
什么是Youtube to Premiere pro?
Youtube to Premiere pro是由Selgy开发的Chrome扩展程序,该扩展的主要功能是“Sends the current tab's URL to a local server and to Premiere pro throught Pymiere.”。
扩展截图
下载Youtube to Premiere pro扩展crx文件
下载Youtube to Premiere pro扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Youtube to Premiere pro |
ID | lhoepckbiamgobehojaibapoddjpfmfo |
官方URL | https://chromewebstore.google.com/detail/youtube-to-premiere-pro/lhoepckbiamgobehojaibapoddjpfmfo |
简介 | Sends the current tab's URL to a local server and to Premiere pro throught Pymiere. |
文件大小 | 55.12 KB |
安装次数 | 247 |
当前版本 | 1.1 |
更新时间 | 2024-02-02 |
上架时间 | 2023-11-04 |
评分 | 4.33/5 共3次评分 |
开发者 | Selgy |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/Selgy/Youtube-to-PremierePro |
隐私政策页面URL | https://docs.google.com/document/d/1PqAeCU8BE499sx5JScJR5IPCKBkOxAlyEZMhA_IJUlw/edit?usp=sharing |
支持的语言 | 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" } } |