Minimal Web Clipper

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

O que é Minimal Web Clipper?

Minimal Web Clipper é uma extensão do Chrome desenvolvida por fluidnotion.in, e sua principal característica é "A minimal bare-bones web clipper to select a section of any webpage and save it as a standalone HTML file".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Minimal Web Clipper

Baixe arquivos de extensão Minimal Web Clipper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Minimal Web Clipper Minimal Web Clipper
ID dbhjdoppiocfognmfiaoeipkpdljefni
URL Oficial https://chromewebstore.google.com/detail/minimal-web-clipper/dbhjdoppiocfognmfiaoeipkpdljefni
Descrição A minimal bare-bones web clipper to select a section of any webpage and save it as a standalone HTML file
Tamanho do Arquivo 60.3 KB
Contagem de Instalações 127
Versão Atual 0.0.4
Última Atualização 2018-01-21
Data de Publicação 2018-01-20
Classificação 3.67/5 Total de 3 Avaliações
Desenvolvedor fluidnotion.in
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/fluid-notion/minimal-web-clipper
URL da Página de Ajuda https://github.com/fluid-notion/minimal-web-clipper/issues
Idiomas Suportados 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'"
}