Youtube to Premiere pro

Sends the current tab's URL to a local server and to Premiere pro throught Pymiere.

Youtube to Premiere pro là gì?

Youtube to Premiere pro là một tiện ích mở rộng Chrome được phát triển bởi Selgy, và tính năng chính của nó là "Sends the current tab's URL to a local server and to Premiere pro throught Pymiere.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Youtube to Premiere pro

Tải xuống các tệp mở rộng Youtube to Premiere pro dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Youtube to Premiere pro Youtube to Premiere pro
ID lhoepckbiamgobehojaibapoddjpfmfo
URL Chính Thức https://chromewebstore.google.com/detail/youtube-to-premiere-pro/lhoepckbiamgobehojaibapoddjpfmfo
Mô tả Sends the current tab's URL to a local server and to Premiere pro throught Pymiere.
Kích Thước Tệp 55.12 KB
Số Lần Cài Đặt 247
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2024-02-02
Ngày Phát Hành 2023-11-04
Đánh Giá 4.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Selgy
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Selgy/Youtube-to-PremierePro
URL Trang Chính Sách Bảo Mật https://docs.google.com/document/d/1PqAeCU8BE499sx5JScJR5IPCKBkOxAlyEZMhA_IJUlw/edit?usp=sharing
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}