Video Resizer

Easily resize video files right in your browser!

Video Resizer란 무엇입니까?

Video Resizer은(는) Lynn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily resize video files right in your browser!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Video Resizer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}