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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension being used to easily access Google (GSuite Products) tools with single click."입니다.
확장 프로그램 스크린샷
GSuite Custom Toolbar 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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": [ "*" ] } |