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.」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" ] } |