Videoclipper

Videoclipper

Τι είναι το Videoclipper;

Το Videoclipper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον CharGPT Sidebar, και η κύρια λειτουργία του είναι "Videoclipper".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Videoclipper

Λήψη αρχείων επέκτασης Videoclipper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        📹It is often necessary to use a large number of video clips when making web videos, however, collecting these fragmented clips is a very troublesome task, to better solve this problem, we designed a tool called🔧video clipper.
✂️Compared with the tools on the market, 🚀it is more convenient web video clipping tool. 🙅It does not require downloading full videos and no additional editing tools, which greatly improves the efficiency.👍
📌Drag the marker to select the clip you want and start clipping it with one click
🎬Support YouTube, more video platforms will be supported later
👁️ Support up to 1080P
🧹Automatically remove ads from videos
🎉Downloading MP4 format                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Videoclipper Videoclipper
ID hidolfcolcjjjmbkjaokbjlliomcjkio
Επίσημο URL https://chrome.google.com/webstore/detail/videoclipper/hidolfcolcjjjmbkjaokbjlliomcjkio
Περιγραφή Videoclipper
Μέγεθος Αρχείου 2.69 MB
Αριθμός Εγκαταστάσεων 87
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2021-11-29
Ημερομηνία Δημοσίευσης 2021-11-29
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής CharGPT Sidebar
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://chatgpt-sidebar.com/privacy.html
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Videoclipper",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Videoclipper",
    "options_page": "options.html",
    "icons": {
        "16": "assets\/logo128.png",
        "48": "assets\/logo128.png",
        "128": "assets\/logo128.png",
        "300": "assets\/logo300.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "background.js",
            "lib\/video_wasm\/mp4_muxer.js",
            "mbg.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "injecter.js",
                "mediaInjecter.js",
                "keydownHijack.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "content.js",
        "content.css",
        "recordEnd.html",
        "feedback.html",
        "lib\/video_wasm\/mp4_muxer.js",
        "lib\/video_wasm\/mp4_muxer.wasm",
        "lib\/video_wasm\/mp4_muxer.worker.js"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}