Minimal Web Clipper

A minimal bare-bones web clipper to select a section of any webpage and save it as a standalone HTML file

Minimal Web Clipper란 무엇입니까?

Minimal Web Clipper은(는) fluidnotion.in에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A minimal bare-bones web clipper to select a section of any webpage and save it as a standalone HTML file"입니다.

확장 프로그램 스크린샷

screenshot

Minimal Web Clipper 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Minimal Web Clipper (Alpha) is a bare-bones utility to clip a section of a web-page and download the content as a standalone HTML file which can be opened in any browser. An attempt is made to preserve the original look and feel as much as possible.

It does not require any signup and does not send the information to any backend service.

There is no support for synchronization (use your favorite file sync utility) or sharing (share as email attachment or your favorite sharing application).

Source Code: https://github.com/fluid-notion/minimal-web-clipper                    

확장 프로그램 기본 정보

이름 Minimal Web Clipper Minimal Web Clipper
ID dbhjdoppiocfognmfiaoeipkpdljefni
공식 URL https://chromewebstore.google.com/detail/minimal-web-clipper/dbhjdoppiocfognmfiaoeipkpdljefni
설명 A minimal bare-bones web clipper to select a section of any webpage and save it as a standalone HTML file
파일 크기 60.3 KB
설치 횟수 127
현재 버전 0.0.4
최근 업데이트 2018-01-21
출시 날짜 2018-01-20
평점 3.67/5 총 3 개의 평점
개발자 fluidnotion.in
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/fluid-notion/minimal-web-clipper
도움말 페이지 URL https://github.com/fluid-notion/minimal-web-clipper/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A minimal bare-bones web clipper to select a section of any webpage and save it as a standalone HTML file",
    "version": "0.0.4",
    "name": "Minimal Web Clipper",
    "options_page": "options.html",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.bundle.js"
            ]
        }
    ],
    "icons": {
        "34": "icon-34.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}