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.」です。

拡張機能のスクリーンショット

screenshot

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 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
Eメール [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"
    }
}