Slab for Chrome

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

Apa itu Slab for Chrome?

Slab for Chrome adalah ekstensi Chrome yang dikembangkan oleh https://slab.com, dan fitur utamanya adalah "Access your team's shared knowledge from anywhere in Chrome.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Slab for Chrome

Unduh file ekstensi Slab for Chrome dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Slab for Chrome Slab for Chrome
ID nfkdkjjhioogcpdklmkocdhmjcpdflgg
URL Resmi https://chromewebstore.google.com/detail/slab-for-chrome/nfkdkjjhioogcpdklmkocdhmjcpdflgg
Deskripsi Access your team's shared knowledge from anywhere in Chrome.
Ukuran File 4.04 MB
Jumlah Instalasi 2,033
Versi Saat Ini 1.1.0
Terakhir Diperbarui 2023-07-11
Tanggal Publikasi 2022-05-03
Penilaian 5.00/5 Total 11 Penilaian
Pengembang https://slab.com
Email [email protected]
Tipe Pembayaran free
URL Halaman Bantuan https://help.slab.com
URL Halaman Kebijakan Privasi https://slab.com/privacy
Bahasa yang Didukung 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"
    ]
}