Kollate

The only app you will ever need for bookmarking and note taking.

O que é Kollate?

Kollate é uma extensão do Chrome desenvolvida por https://kollate.io, e sua principal característica é "The only app you will ever need for bookmarking and note taking.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Kollate

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

                        Kollate is a personal knowledge management tool which allows you to bookmark links, take beautiful notes, and organize them in collections and notebooks. For free.                    

Informações Básicas da Extensão

Nome Kollate Kollate
ID jhfpakfaieihoeoiciffgmmbpaoocbbk
URL Oficial https://chromewebstore.google.com/detail/kollate/jhfpakfaieihoeoiciffgmmbpaoocbbk
Descrição The only app you will ever need for bookmarking and note taking.
Tamanho do Arquivo 2.18 MB
Contagem de Instalações 437
Versão Atual 0.143
Última Atualização 2019-05-01
Data de Publicação 2019-04-27
Classificação 4.25/5 Total de 8 Avaliações
Desenvolvedor https://kollate.io
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://kollate.io
URL da Página de Política de Privacidade https://kollate.io/public/note/6e26cef0-53f9-11e9-b3cd-37b18fc6ebb7
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Kollate",
    "version": "0.143",
    "manifest_version": 2,
    "description": "The only app you will ever need for bookmarking and note taking.",
    "icons": {
        "16": "images\/kollate-16.png",
        "48": "images\/kollate-48.png",
        "128": "images\/kollate-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Kollate",
        "default_icon": "images\/kollate-128.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/localhost\/*",
                "*:\/\/kollate.io\/*",
                "*:\/\/*.kollate.io\/*"
            ],
            "css": [],
            "js": [
                "inject_head.js",
                "content_script.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [],
            "js": [
                "broadcast_screenshot.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/kollate.io\/*"
        ]
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "contextMenus"
    ],
    "web_accessible_resources": [
        "add-resource.html",
        "images\/*.png",
        "editor.html",
        "dropdown.html",
        "screenshot.html",
        "hide-dropdown.html",
        "unhide-note.html",
        "settings.html",
        "thumbnail-selector.html",
        "login-error.html"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+K",
                "mac": "Command+K"
            }
        }
    }
}