Slab for Chrome
Access your team's shared knowledge from anywhere in Chrome.
Slab for Chrome क्या है?
Slab for Chrome https://slab.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Access your team's shared knowledge from anywhere in Chrome."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Slab for Chrome एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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" ] } |