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 là gì?

Minimal Web Clipper là một tiện ích mở rộng Chrome được phát triển bởi fluidnotion.in, và tính năng chính của nó là "A minimal bare-bones web clipper to select a section of any webpage and save it as a standalone HTML file".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Minimal Web Clipper

Tải xuống các tệp mở rộng Minimal Web Clipper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Minimal Web Clipper Minimal Web Clipper
ID dbhjdoppiocfognmfiaoeipkpdljefni
URL Chính Thức https://chromewebstore.google.com/detail/minimal-web-clipper/dbhjdoppiocfognmfiaoeipkpdljefni
Mô tả A minimal bare-bones web clipper to select a section of any webpage and save it as a standalone HTML file
Kích Thước Tệp 60.3 KB
Số Lần Cài Đặt 127
Phiên Bản Hiện Tại 0.0.4
Cập Nhật Lần Cuối 2018-01-21
Ngày Phát Hành 2018-01-20
Đánh Giá 3.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển fluidnotion.in
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/fluid-notion/minimal-web-clipper
URL Trang Trợ Giúp https://github.com/fluid-notion/minimal-web-clipper/issues
Ngôn Ngữ Được Hỗ Trợ 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'"
}