Gmail Button
A simple toolbar icon to open Gmail
Gmail Buttonとは何ですか?
Gmail ButtonはValtteri Laitinenによって開発されたChromeの拡張機能で、その主な機能は「A simple toolbar icon to open Gmail」です。
拡張機能のスクリーンショット
Gmail Button拡張機能のCRXファイルをダウンロード
Gmail Button拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
(This extension is not affiliated with Google. “Gmail” is a trademark of Google LLC.) 拡張機能の基本情報
| 名前 | |
| ID | afdienfgfeojjnmobgakodmkiebhfcap |
| 公式URL | https://chromewebstore.google.com/detail/gmail-button/afdienfgfeojjnmobgakodmkiebhfcap |
| 説明 | A simple toolbar icon to open Gmail |
| ファイルサイズ | 5.44 KB |
| インストール数 | 5,228 |
| 現在のバージョン | 3.0.0 |
| 最終更新日 | 2023-07-19 |
| 公開日 | 2019-10-13 |
| 評価 | 3.80/5 合計 5 レビュー |
| 開発者 | Valtteri Laitinen |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/valtlai/gmail-button |
| ヘルプページのURL | https://github.com/valtlai/gmail-button/discussions/categories/q-a |
| プライバシーポリシーページのURL | https://github.com/valtlai/gmail-button/blob/main/PRIVACY.md |
| 対応言語 | en,fi |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"minimum_chrome_version": "100",
"name": "__MSG_name__",
"version": "3.0.0",
"description": "__MSG_desc__",
"default_locale": "en",
"icons": {
"128": "icon.png"
},
"permissions": [
"contextMenus",
"storage"
],
"optional_permissions": [
"tabs"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_icon": "icon.png",
"default_title": "__MSG_open__"
}
} | |