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ファイルをダウンロード

Minimal Web Clipper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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'"
}