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
官方網址 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'"
}