Slab for Chrome

Access your team's shared knowledge from anywhere in Chrome.

O que é Slab for Chrome?

Slab for Chrome é uma extensão do Chrome desenvolvida por https://slab.com, e sua principal característica é "Access your team's shared knowledge from anywhere in Chrome.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Slab for Chrome

Baixe arquivos de extensão Slab for Chrome 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

                        Slab is the leading knowledge base and wiki to easily create, organize, and discover knowledge across the entire company, from non-technical to tech-savvy.

With Slab for Chrome, you can quickly list all your recent or favorite posts, search for any available to your team, and view their entire content — all from a convenient, minimal sidebar so you don't have to leave the page your are on.                    

Informações Básicas da Extensão

Nome Slab for Chrome Slab for Chrome
ID nfkdkjjhioogcpdklmkocdhmjcpdflgg
URL Oficial https://chromewebstore.google.com/detail/slab-for-chrome/nfkdkjjhioogcpdklmkocdhmjcpdflgg
Descrição Access your team's shared knowledge from anywhere in Chrome.
Tamanho do Arquivo 4.04 MB
Contagem de Instalações 2,033
Versão Atual 1.1.0
Última Atualização 2023-07-11
Data de Publicação 2022-05-03
Classificação 5.00/5 Total de 11 Avaliações
Desenvolvedor https://slab.com
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://help.slab.com
URL da Página de Política de Privacidade https://slab.com/privacy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Slab for Chrome",
    "description": "Access your team's shared knowledge from anywhere in Chrome.",
    "version": "1.1.0",
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "background": {
        "service_worker": "js\/background.js"
    },
    "homepage_url": "https:\/\/slab.com",
    "content_scripts": [
        {
            "js": [
                "js\/main.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_idle"
        },
        {
            "js": [
                "js\/login.js"
            ],
            "matches": [
                "*:\/\/*\/extension\/login",
                "*:\/\/*\/login",
                "*:\/\/*\/login?*"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*",
                "web.css",
                "css\/*.css",
                "js\/*.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "16": "icon16.png",
        "128": "icon.png",
        "48": "icon48.png"
    },
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "permissions": [
        "contextMenus",
        "storage",
        "scripting"
    ]
}