NaverCafe video downloader

네이버 카페의 동영상들을 쉽게 다운로드 할 수 있는 서비스.

What is NaverCafe video downloader?

NaverCafe video downloader is a Chrome extension developed by Sam ryong, and its main feature is "네이버 카페의 동영상들을 쉽게 다운로드 할 수 있는 서비스.".

Extension Screenshots

screenshot
screenshot
screenshot

Download NaverCafe video downloader Extension CRX File

Download NaverCafe video downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        네이버 카페에 등록된 영상을 다운받는 일은 어렵습니다.
네이버에서는 영상 다운로드 기능을 제공하고 있지 않기 때문입니다.

이런 불편함을 해결하기 위해 이 확장 프로그램을 만들었습니다.
카페에서 동영상이 있는 게시물에 들어가면 확장 프로그램 팝업에 동영상을 바로 다운받을 수 있는 기능을 제공합니다.
확장 프로그램을 핀으로 고정시켜 항상 보이게 두면 사용하기 편리합니다.

- 사용방법
원하는 화질 [270p, 480p, 720p, 1080p] 을 선택하고, 다운로드 버튼을 누르기만 하면 즉시 다운로드가 진행됩니다.

문의사항이 있거나 버그를 발견했다면 Feedback 페이지를 이용해 제보해주세요.

<1.1.0 버전>
탭별로 다른 페이지 열어 다른 동영상을 다운받을 수 있습니다.

<1.2.0 버전>
팝업을 다시 로드하더라도 화질이 1080p로 고정되지 않습니다.
다운받던 화질로 계속 다운받을 수 있어요!

<1.3.0 버전>
다운로드 버튼 클릭시 메시지 표시
다운로드 한 파일 이름이 동영상 제목과 동일하게 표시됩니다.
<1.3.1 버전>
버그 수정                    

Extension Basic Information

Name NaverCafe video downloader NaverCafe video downloader
ID glclhpipfpfammoflcfnknnlddkgpdoe
Official URL https://chromewebstore.google.com/detail/navercafe-video-downloade/glclhpipfpfammoflcfnknnlddkgpdoe
Description 네이버 카페의 동영상들을 쉽게 다운로드 할 수 있는 서비스.
File Size 167 KB
Installation Count 6,288
Current Version 1.3.1
Last Updated 2023-11-17
Publish Date 2023-08-04
Rating 4.88/5 Total 8 Ratings
Developer Sam ryong
Email [email protected]
Payment Type free
Supported Languages ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NaverCafe video downloader",
    "version": "1.3.1",
    "manifest_version": 3,
    "author": "Hangyeol-SSeo ",
    "description": "\ub124\uc774\ubc84 \uce74\ud398\uc758 \ub3d9\uc601\uc0c1\ub4e4\uc744 \uc27d\uac8c \ub2e4\uc6b4\ub85c\ub4dc \ud560 \uc218 \uc788\ub294 \uc11c\ube44\uc2a4.",
    "homepage_url": "https:\/\/github.com\/Hangyeol-SSeo\/NaverCafe-VideoDownloader",
    "icons": {
        "128": "icons\/128.png",
        "48": "icons\/48.png",
        "32": "icons\/32.png",
        "16": "icons\/16.png"
    },
    "offline_enabled": false,
    "action": {
        "default_icon": "icons\/48.png",
        "default_title": "NaverCafe video downloader",
        "default_popup": "src\/popup.html"
    },
    "permissions": [
        "webRequest",
        "storage",
        "downloads"
    ],
    "host_permissions": [
        "*:\/\/cafe.naver.com\/*",
        "*:\/\/apis.naver.com\/*"
    ],
    "background": {
        "service_worker": "src\/backend.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/cafe.naver.com\/*"
            ],
            "js": [
                "src\/downloader.js",
                "src\/resource.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/download_button.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}