Restore old Google icons
Restore the old icon on Meet, Calendar and Gmail to make tabs more recognizable
Restore old Google iconsとは何ですか?
Restore old Google iconsはclaudiopostinghelによって開発されたChromeの拡張機能で、その主な機能は「Restore the old icon on Meet, Calendar and Gmail to make tabs more recognizable」です。
拡張機能のスクリーンショット
Restore old Google icons拡張機能のCRXファイルをダウンロード
Restore old Google icons拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension restore the old icon on Meet, Calendar and Gmail to make tabs more recognizable. That increases accessibility.
Super simple :) nothing more. 拡張機能の基本情報
| 名前 | |
| ID | ggjnppcaflhlajblielgecndhfdolead |
| 公式URL | https://chromewebstore.google.com/detail/restore-old-google-icons/ggjnppcaflhlajblielgecndhfdolead |
| 説明 | Restore the old icon on Meet, Calendar and Gmail to make tabs more recognizable |
| ファイルサイズ | 182 KB |
| インストール数 | 222 |
| 現在のバージョン | 0.1 |
| 最終更新日 | 2020-11-03 |
| 公開日 | 2020-11-02 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | claudiopostinghel |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | http://restoreoldicons.xyz/ |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Restore old Google icons",
"description": "Restore the old icon on Meet, Calendar and Gmail to make tabs more recognizable",
"version": "0.1",
"content_scripts": [
{
"matches": [
"*:\/\/calendar.google.com\/*"
],
"js": [
"calendar_script.js"
]
},
{
"matches": [
"*:\/\/docs.google.com\/*"
],
"js": [
"docs_script.js"
]
},
{
"matches": [
"*:\/\/drive.google.com\/*"
],
"js": [
"drive_script.js"
]
},
{
"matches": [
"*:\/\/mail.google.com\/*"
],
"js": [
"gmail_script.js"
]
},
{
"matches": [
"*:\/\/meet.google.com\/*"
],
"js": [
"meet_script.js"
]
}
],
"browser_action": {
"default_icon": "icon16.png",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
}
} | |