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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย fluidnotion.in และคุณลักษณะหลักของมันคือ "A minimal bare-bones web clipper to select a section of any webpage and save it as a standalone HTML file"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Minimal Web Clipper

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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'"
}