Minimal Web Clipper

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

Hvad er Minimal Web Clipper?

Minimal Web Clipper er en Chrome-udvidelse udviklet af fluidnotion.in, og dens hovedfunktion er "A minimal bare-bones web clipper to select a section of any webpage and save it as a standalone HTML file".

Udvidelsesskærmbilleder

screenshot

Download Minimal Web Clipper-udvidelses-CRX-fil

Download Minimal Web Clipper-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Minimal Web Clipper Minimal Web Clipper
ID dbhjdoppiocfognmfiaoeipkpdljefni
Officiel URL https://chromewebstore.google.com/detail/minimal-web-clipper/dbhjdoppiocfognmfiaoeipkpdljefni
Beskrivelse A minimal bare-bones web clipper to select a section of any webpage and save it as a standalone HTML file
Filstørrelse 60.3 KB
Antal Installationer 127
Nuværende Version 0.0.4
Senest Opdateret 2018-01-21
Udgivelsesdato 2018-01-20
Bedømmelse 3.67/5 Samlet 3 Bedømmelser
Udvikler fluidnotion.in
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/fluid-notion/minimal-web-clipper
Hjælpeside-URL https://github.com/fluid-notion/minimal-web-clipper/issues
Understøttede Sprog 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'"
}