Vimego - Simple Video Downloader

Vimego - Extension for download video, subtitles and audio by injecting download buttons directly into the player.

Vimego - Simple Video Downloader란 무엇입니까?

Vimego - Simple Video Downloader은(는) https://vimego.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Vimego - Extension for download video, subtitles and audio by injecting download buttons directly into the player."입니다.

확장 프로그램 스크린샷

screenshot

Vimego - Simple Video Downloader 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Vimego - Simple Video Downloader extension allows you to download video and download embedded video.
      
How to use Vimego - Simple Video Downloader?
- In the upper right corner of the video playback page, a resolution button appears, click the button to download the video with the corresponding resolution
- In the video thumbnail list, the download button appears in the upper left corner, click to load the video resolution to download
      
The main concepts of Vimego - Simple Video Downloader extension are:
- provide injection only on user demand
- minimal resource consumption
- minimal permissions request
To download video variants (particularly high-resolution ones) which are not available with injected buttons, the external ffmpeg tool can be used.

NOTE: 
‒ This extension is not affiliated with Vimeo™.
‒ If you get several download buttons of the same quality, it means that this video has several frame rates and/or different codecs for this quality. Hold the mouse cursor on the button to see the tooltip with quality and fps.

If you have questions, please email us.  [email protected]                    

확장 프로그램 기본 정보

이름 Vimego - Simple Video Downloader Vimego - Simple Video Downloader
ID mffmjlddchdccijipncbjhoabgmphjfb
공식 URL https://chromewebstore.google.com/detail/vimego-simple-video-downl/mffmjlddchdccijipncbjhoabgmphjfb
설명 Vimego - Extension for download video, subtitles and audio by injecting download buttons directly into the player.
파일 크기 2.48 MB
설치 횟수 245,874
현재 버전 1.5.32
최근 업데이트 2023-12-13
출시 날짜 2020-07-04
평점 3.78/5 총 576 개의 평점
개발자 https://vimego.io
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://vimego.io/
개인정보 보호 정책 페이지 URL https://vimego.io/privacy
지원되는 언어 id,de,en,en-GB,en-US,fil,fr,sw,nl,vi,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,ru,uk,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "version": "1.5.32",
    "description": "__MSG_extDes__",
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/simple-downloader-for-vim\/mffmjlddchdccijipncbjhoabgmphjfb?hl=zh-CN",
    "icons": {
        "128": "svd_icon128.png"
    },
    "default_locale": "en",
    "action": {
        "default_title": "Inject Simple Vimeo Downloader buttons",
        "default_popup": "svd_popup.html"
    },
    "background": {
        "service_worker": "svd_background.js"
    },
    "permissions": [
        "declarativeNetRequestWithHostAccess",
        "alarms",
        "activeTab",
        "downloads",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/vimeo.com\/*",
        "*:\/\/player.vimeo.com\/*",
        "*:\/\/*.akamaized.net\/*",
        "*:\/\/*.vimeocdn.com\/*",
        "*:\/\/*.facebook.com\/*",
        "*:\/\/*.twitter.com\/*",
        "*:\/\/*.pinterest.com\/*",
        "*:\/\/*.reddit.com\/*",
        "*:\/\/*.aliyuncs.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/vimeo.com\/*",
                "*:\/\/player.vimeo.com\/*",
                "*:\/\/*.vimeocdn.com\/*"
            ],
            "js": [
                "svd_content_script.js"
            ],
            "css": [
                "insert.css"
            ],
            "all_frames": true,
            "run_at": "document_end"
        },
        {
            "js": [
                "content-inject.js"
            ],
            "matches": [
                "*:\/\/vimeo.com\/*"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*.facebook.com\/*",
                "*:\/\/*.twitter.com\/*",
                "*:\/\/*.pinterest.com\/*",
                "*:\/\/*.reddit.com\/*"
            ],
            "js": [
                "xrpa-data-module\/content-script.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "arrow.png",
                "svd_inject_icon.svg",
                "svd_icon128.png",
                "ajax-listener.js",
                "xrpa-data-module\/*"
            ],
            "matches": [
                "*:\/\/vimeo.com\/*",
                "*:\/\/player.vimeo.com\/*",
                "*:\/\/*.akamaized.net\/*",
                "*:\/\/*.vimeocdn.com\/*",
                "*:\/\/*.facebook.com\/*",
                "*:\/\/*.twitter.com\/*",
                "*:\/\/*.pinterest.com\/*",
                "*:\/\/*.reddit.com\/*",
                "*:\/\/*.aliyuncs.com\/*"
            ]
        }
    ]
}