Minimal Web Clipper

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

Wat is Minimal Web Clipper?

Minimal Web Clipper is een Chrome-extensie ontwikkeld door fluidnotion.in, en de belangrijkste functie is "A minimal bare-bones web clipper to select a section of any webpage and save it as a standalone HTML file".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Minimal Web Clipper

Download Minimal Web Clipper-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Minimal Web Clipper Minimal Web Clipper
ID dbhjdoppiocfognmfiaoeipkpdljefni
Officiële URL https://chromewebstore.google.com/detail/minimal-web-clipper/dbhjdoppiocfognmfiaoeipkpdljefni
Beschrijving A minimal bare-bones web clipper to select a section of any webpage and save it as a standalone HTML file
Bestandsgrootte 60.3 KB
Aantal Installaties 127
Huidige Versie 0.0.4
Laatst Bijgewerkt 2018-01-21
Publicatiedatum 2018-01-20
Beoordeling 3.67/5 Totaal 3 Beoordelingen
Ontwikkelaar fluidnotion.in
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/fluid-notion/minimal-web-clipper
Help Pagina-URL https://github.com/fluid-notion/minimal-web-clipper/issues
Ondersteunde Talen 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'"
}