Restore old Google icons
Restore the old icon on Meet, Calendar, Gmail etc to make tabs more recognizable
什麼是Restore old Google icons?
Restore old Google icons是由claudiopostinghel開發的Chrome擴展程式,該擴展的主要功能是“Restore the old icon on Meet, Calendar, Gmail etc 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 | iellnmonjokmoagdlggagdmfjgpiahmb |
| 官方網址 | https://chromewebstore.google.com/detail/restore-old-google-icons/iellnmonjokmoagdlggagdmfjgpiahmb |
| 簡介 | Restore the old icon on Meet, Calendar, Gmail etc to make tabs more recognizable |
| 檔案大小 | 53.17 KB |
| 安裝次數 | 10,498 |
| 目前版本 | 0.2 |
| 更新時間 | 2020-11-06 |
| 上架時間 | 2020-11-02 |
| 評分 | 4.40/5 共 100 次評分 |
| 開發者 | claudiopostinghel |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://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, Gmail etc to make tabs more recognizable",
"version": "0.2",
"content_scripts": [
{
"matches": [
"*:\/\/calendar.google.com\/*"
],
"js": [
"calendar_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"
]
}
],
"permissions": [
"*:\/\/calendar.google.com\/*",
"*:\/\/docs.google.com\/*",
"*:\/\/drive.google.com\/*",
"*:\/\/mail.google.com\/*",
"*:\/\/meet.google.com\/*"
],
"browser_action": {
"default_icon": "icon16.png",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
}
} | |