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 |
| 官方URL | 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
}
} | |