Klart

Klart is a bookmarking service made for designers. Capture a screenshot and a link to anything online with just a click.

O que é Klart?

Klart é uma extensão do Chrome desenvolvida por https://klart.io, e sua principal característica é "Klart is a bookmarking service made for designers. Capture a screenshot and a link to anything online with just a click.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Klart

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

                        Klart is a bookmarking service made for designers. Capture and organize anything you find online with just a click. It's perfect for collecting designs, copywriting and content.

Capture a screenshot and a link of websites with just a click. All snapshots are uploaded to your private area on klart.io where you can access and organize them with ease. Anytime, anywhere.                    

Informações Básicas da Extensão

Nome Klart Klart
ID kcfahcmpmlnalnchpbdoaifcjnnnimaa
URL Oficial https://chromewebstore.google.com/detail/klart/kcfahcmpmlnalnchpbdoaifcjnnnimaa
Descrição Klart is a bookmarking service made for designers. Capture a screenshot and a link to anything online with just a click.
Tamanho do Arquivo 363 KB
Contagem de Instalações 106
Versão Atual 1.2.2
Última Atualização 2020-04-20
Data de Publicação 2020-04-19
Classificação 3.67/5 Total de 6 Avaliações
Desenvolvedor https://klart.io
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://klart.io
URL da Página de Ajuda https://klart.io/faq
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Klart",
    "description": "Klart is a bookmarking service made for designers. Capture a screenshot and a link to anything online with just a click.",
    "homepage_url": "https:\/\/klart.io",
    "version": "1.2.2",
    "browser_action": {
        "default_icon": {
            "16": "logo-assets\/16x16-color.png",
            "24": "logo-assets\/24x24.png",
            "32": "logo-assets\/32x32-color.png"
        },
        "default_title": "Capture it"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+K",
                "mac": "Command+Shift+K"
            }
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        ""
    ],
    "icons": {
        "16": "logo-assets\/16x16-color.png",
        "32": "logo-assets\/32x32-color.png",
        "48": "logo-assets\/48x48-color.png",
        "128": "logo-assets\/128x128-color.png"
    }
}