Slab for Chrome

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

Что такое Slab for Chrome?

Slab for Chrome - это расширение Chrome, разработанное https://slab.com, и его основная функция - "Access your team's shared knowledge from anywhere in Chrome.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Slab for Chrome

Скачайте файлы расширений Slab for Chrome в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Slab for Chrome Slab for Chrome
ID nfkdkjjhioogcpdklmkocdhmjcpdflgg
Официальный URL https://chromewebstore.google.com/detail/slab-for-chrome/nfkdkjjhioogcpdklmkocdhmjcpdflgg
Описание Access your team's shared knowledge from anywhere in Chrome.
Размер файла 4.04 MB
Количество установок 2,033
Текущая Версия 1.1.0
Последнее Обновление 2023-07-11
Дата публикации 2022-05-03
Рейтинг 5.00/5 Всего 11 оценок
Разработчик https://slab.com
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://help.slab.com
URL страницы политики конфиденциальности https://slab.com/privacy
Поддерживаемые языки 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"
    ]
}