Joplin Web Clipper

Capture and save web pages and screenshots from your browser to Joplin.

O que é Joplin Web Clipper?

Joplin Web Clipper é uma extensão do Chrome desenvolvida por https://joplinapp.org, e sua principal característica é "Capture and save web pages and screenshots from your browser to Joplin.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Joplin Web Clipper

Baixe arquivos de extensão Joplin 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

                        This is a web clipper that allows you to save web pages to Joplin and take screenshots while you're browsing the internet. You can either save complete web pages or simplified versions of it. You will need the Joplin desktop application to use this extension.                    

Informações Básicas da Extensão

Nome Joplin Web Clipper Joplin Web Clipper
ID alofnhikmmkdbbbgpnglcpdollgjjfek
URL Oficial https://chromewebstore.google.com/detail/joplin-web-clipper/alofnhikmmkdbbbgpnglcpdollgjjfek
Descrição Capture and save web pages and screenshots from your browser to Joplin.
Tamanho do Arquivo 277 KB
Contagem de Instalações 80,000
Versão Atual 2.11.2
Última Atualização 2024-02-10
Data de Publicação 2019-12-04
Classificação 4.44/5 Total de 93 Avaliações
Desenvolvedor https://joplinapp.org
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://joplinapp.org/help/apps/clipper
URL da Página de Ajuda https://discourse.joplinapp.org/
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Joplin Web Clipper",
    "version": "2.11.2",
    "description": "Capture and save web pages and screenshots from your browser to Joplin.",
    "homepage_url": "https:\/\/joplinapp.org",
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "icons": {
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "96": "icons\/96.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "",
        "storage"
    ],
    "browser_action": {
        "default_icon": "icons\/32.png",
        "default_title": "Joplin Web Clipper",
        "default_popup": "popup\/build\/index.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+J"
            }
        },
        "clipCompletePage": {
            "suggested_key": {
                "default": "Alt+Shift+C"
            },
            "description": "Clip complete page (uses last selected notebook)"
        },
        "clipCompletePageHtml": {
            "description": "Clip complete page (HTML) (uses last selected notebook)"
        },
        "clipSimplifiedPage": {
            "description": "Clip simplified page (uses last selected notebook)"
        },
        "clipUrl": {
            "description": "Clip url (uses last selected notebook)"
        },
        "clipSelection": {
            "description": "Clip selection (uses last selected notebook)"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}