GSuite Custom Toolbar
This extension being used to easily access Google (GSuite Products) tools with single click.
GSuite Custom Toolbar क्या है?
GSuite Custom Toolbar Ghanshyam Katriya द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension being used to easily access Google (GSuite Products) tools with single click."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GSuite Custom Toolbar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
GSuite Custom Toolbar is an extension being used to easily access Google tools (GSuite Products) tools with single click from Gmail. Changelog: [v0.2.0] - Fix issue of search not working in Gmail - Added Google Meet How to use : - Install this extension - Enable/Disable options for links - Use it GSuite is an registered trademark of Google. We are not affiliated with Google.
एक्सटेंशन की मूल जानकारी
नाम | GSuite Custom Toolbar |
ID | mjcajbgmgplmelmnafihhbfhiecioaic |
आधिकारिक URL | https://chromewebstore.google.com/detail/gsuite-custom-toolbar/mjcajbgmgplmelmnafihhbfhiecioaic |
विवरण | This extension being used to easily access Google (GSuite Products) tools with single click. |
फ़ाइल का आकार | 81.85 KB |
स्थापना संख्या | 3,000 |
वर्तमान संस्करण | 0.2.0 |
अंतिम अपडेट | 2020-05-05 |
प्रकाशन तिथि | 2020-05-04 |
डेवलपर | Ghanshyam Katriya |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GSuite Custom Toolbar", "description": "This extension being used to easily access Google (GSuite Products) tools with single click.", "version": "0.2.0", "options_page": "options.html", "browser_action": { "default_icon": "icon.png", "default_popup": "options.html", "default_title": "GSuite Custom Toolbar" }, "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" }, "options_ui": { "page": "options.html", "chrome_style": true }, "background": { "scripts": [ "jquery.min.js", "actions.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "jquery.min.js", "actions.js" ], "run_at": "document_end" } ], "permissions": [ "storage", "tabs", "https:\/\/mail.google.com\/*" ], "web_accessible_resources": [ "*" ] } |