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"
    ]
}