Video Resizer

Easily resize video files right in your browser!

Video Resizer क्या है?

Video Resizer Lynn द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily resize video files right in your browser!"।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Video Resizer is an extension that enables you to resize video files right in your browser.

To work with this extension, please first add your input video file via the file selector at the top. The input video can be in several formats such as .mp4, .webm, etc. To see the complete list of supported formats, please visit this Wikipedia page (https://en.wikipedia.org/wiki/FFmpeg). Next, adjust your settings and then click on the - RESIZE - button to start the operation. Once the resizing is finished, the final video file will be downloaded to your machine. Within the settings section, there are five categories for resizing options. Click on the appropriate category and then fill in the required fields. By default, the first category is chosen.

Note: this extension uses the FFmpeg library (https://github.com/ffmpegwasm/ffmpeg.wasm) which is compiled to JavaScript via the Emscripten compiler (https://github.com/emscripten-core/emscripten).

If you have a feature request or found a bug to report, please fill out the bug report form on the addon's homepage (https://mybrowseraddon.com/video-resizer.html).                    

एक्सटेंशन की मूल जानकारी

नाम Video Resizer Video Resizer
ID nnkoiomnhjmnnpnohgappjgbggdobcja
आधिकारिक URL https://chromewebstore.google.com/detail/video-resizer/nnkoiomnhjmnnpnohgappjgbggdobcja
विवरण Easily resize video files right in your browser!
फ़ाइल का आकार 8.54 MB
स्थापना संख्या 299
वर्तमान संस्करण 0.1.0
अंतिम अपडेट 2022-07-29
प्रकाशन तिथि 2022-07-29
डेवलपर Lynn
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://mybrowseraddon.com/video-resizer.html
सहायता पृष्ठ URL https://mybrowseraddon.com/video-resizer.html
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.0",
    "manifest_version": 3,
    "name": "Video Resizer",
    "offline_enabled": true,
    "short_name": "video-resizer",
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "homepage_url": "https:\/\/mybrowseraddon.com\/video-resizer.html",
    "description": "Easily resize video files right in your browser!",
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
    },
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Video Resizer",
        "default_popup": "data\/popup\/popup.html",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}