SVD Video Downloader

Smart Video Downloader is an extension that allows you to download videos from most popular video streaming websites. - When the…

SVD Video Downloader란 무엇입니까?

SVD Video Downloader은(는) Adrián Arbizu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Smart Video Downloader is an extension that allows you to download videos from most popular video streaming websites. - When the…"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Smart Video Downloader is an extension that allows you to download videos from most popular video streaming websites.

- When the extension detects that a video is being played in a website, icon will change allowing you to notice the download link.
You simply just need to open the extension's popup page and press download.

- You can also preview the video before starting the download.

Share your experience at Chrome Store and rate SMART VIDEO DOWNLOADER (SVD) extension
Extension made by Adrián Arbizu Donoso (Spain). 
Framework used: Angular 12.                    

확장 프로그램 기본 정보

이름 SVD Video Downloader SVD Video Downloader
ID jbialncfijnjojchcmhfmjgjggbbdghb
공식 URL https://chromewebstore.google.com/detail/svd-video-downloader/jbialncfijnjojchcmhfmjgjggbbdghb
설명 Smart Video Downloader is an extension that allows you to download videos from most popular video streaming websites. - When the…
파일 크기 1.57 MB
설치 횟수 4,265
현재 버전 2.1.0
최근 업데이트 2021-08-09
출시 날짜 2021-07-21
평점 2.71/5 총 7 개의 평점
개발자 Adrián Arbizu
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "manifest_version": 3,
    "name": "SVD Video Downloader",
    "version": "2.1.0",
    "background": {
        "service_worker": "service-worker.js"
    },
    "action": {
        "default_title": "Click to download media",
        "default_popup": "index.html#\/popup"
    },
    "icons": {
        "19": "assets\/icon128.png",
        "38": "assets\/icon128.png",
        "128": "assets\/icon128.png"
    },
    "short_name": "SVD",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "permissions": [
        "tabs",
        "downloads",
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/v.js",
                "js\/vl.js",
                "js\/p.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}