Slab for Chrome

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

什麼是Slab for Chrome?

Slab for Chrome是由https://slab.com開發的Chrome擴展程式,該擴展的主要功能是“Access your team's shared knowledge from anywhere in Chrome.”。

擴展截圖

screenshot
screenshot

下載Slab for Chrome擴展crx文件

下載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
官方網址 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"
    ]
}