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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Sends the current tab's URL to a local server and to Premiere pro throught Pymiere."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Youtube to Premiere pro एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
    }
}