Video downloader - download any video

A video downloader that works with all popular websites. Easy to use with fast download speeds.

Video downloader - download any video란 무엇입니까?

Video downloader - download any video은(는) Video Downloader Pro에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A video downloader that works with all popular websites. Easy to use with fast download speeds."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Video downloader - download any video 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Video Downloader Pro is a simple Chrome add-on for easy video downloads. It finds and downloads videos from many sites like Facebook. It's great for quick downloads but doesn't work with YouTube.

How to Add:

1. Open Chrome and go to the Chrome Web Store.
2. Look up "Video Downloader Pro".
3. Click "Add to Chrome" to install this video downloader.

How to Use:

1. Go to a website with a video (not YouTube).
2. If the add-on finds a video, its icon in Chrome will light up.
3. Click the icon, see the video list, pick one, choose quality, and hit 'Download'.

Features:

- Automatic video detection: The video downloader automatically finds videos on webpages.
- Works with many websites, including Facebook.
- Lets you pick video quality.
- Easy to use for everyone.
- Made for sites other than YouTube.

Video Downloader Pro is perfect for people who often download videos for personal, educational, or creative use. It makes downloading videos easy and smooth, without leaving your browser.                    

확장 프로그램 기본 정보

이름 Video downloader - download any video Video downloader - download any video
ID kfpgookelklhphhnihipmknjdgbeecgj
공식 URL https://chromewebstore.google.com/detail/video-downloader-download/kfpgookelklhphhnihipmknjdgbeecgj
설명 A video downloader that works with all popular websites. Easy to use with fast download speeds.
파일 크기 1.16 MB
설치 횟수 1,595,033
현재 버전 0.4.1
최근 업데이트 2024-01-22
출시 날짜 2023-06-17
평점 4.22/5 총 842 개의 평점
개발자 Video Downloader Pro
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://vdpchrome.com/privacy-policy.html
지원되는 언어 id,ms,de,en,en-GB,en-US,fil,fr,sw,nl,no,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,iw,fa,mr,hi,bn,gu,kn-IN,ml,th,am-ET,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.4.1",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "manifest_version": 3,
    "default_locale": "en",
    "icons": {
        "128": "assets\/icons\/icon_128.png",
        "64": "assets\/icons\/icon_64.png",
        "32": "assets\/icons\/icon_32.png",
        "16": "assets\/icons\/icon_16.png"
    },
    "action": {
        "default_title": "__MSG_extName__",
        "default_icon": {
            "16": "assets\/icons\/icon_16.png",
            "32": "assets\/icons\/icon_32.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/allUrl.js"
            ],
            "run_at": "document_end",
            "exclude_matches": [
                "*:\/\/*.vimeo.com\/*",
                "*:\/\/*.dailymotion.com\/*",
                "*:\/\/*.vk.com\/*",
                "*:\/\/*.instagram.com\/*",
                "*:\/\/*.facebook.com\/*",
                "*:\/\/*.tiktok.com\/*",
                "*:\/\/*.twitter.com\/*",
                "*:\/\/*.youtube.com\/*"
            ]
        },
        {
            "matches": [
                "*:\/\/*.dailymotion.com\/*"
            ],
            "js": [
                "js\/dailymotion.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "*:\/\/*.vimeo.com\/*"
            ],
            "js": [
                ".\/js\/vimeo.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "*:\/\/*.instagram.com\/*"
            ],
            "js": [
                ".\/js\/instagram.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "js": [
                ".\/js\/facebook.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "*:\/\/*.tiktok.com\/*"
            ],
            "js": [
                ".\/js\/tiktok.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "js": [
                ".\/js\/twitter.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                ".\/js\/youtube.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "storage",
        "webRequest",
        "tabs",
        "downloads"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "js\/instagramStory.js",
                "js\/instagram.js",
                "js\/ytScript.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "host_permissions": [
        ""
    ]
}