Old Google Logos And Icons

Brings back old Google apps logos and icons for Gmail, Drive, Calendar and Meet.

什么是Old Google Logos And Icons?

Old Google Logos And Icons是由omniZero开发的Chrome扩展程序,该扩展的主要功能是“Brings back old Google apps logos and icons for Gmail, Drive, Calendar and Meet.”。

扩展截图

screenshot

下载Old Google Logos And Icons扩展crx文件

下载Old Google Logos And Icons扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Replaces new Google Workspace logos and icons with old design. Changes are applied to the logo in the top-left corner of a page as well as to the favicon (tab icon).

Includes dynamically updated calendar icons based on current date.                    

扩展基本信息

名称 Old Google Logos And Icons Old Google Logos And Icons
ID jfhmfocmbambgopbjhkdncafdlkohmnm
官方URL https://chromewebstore.google.com/detail/old-google-logos-and-icon/jfhmfocmbambgopbjhkdncafdlkohmnm
简介 Brings back old Google apps logos and icons for Gmail, Drive, Calendar and Meet.
文件大小 344 KB
安装次数 2,444
当前版本 1.1.4
更新时间 2023-08-24
上架时间 2020-11-11
评分 3.76/5 共17次评分
开发者 omniZero
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Old Google Logos And Icons",
    "version": "1.1.4",
    "description": "Brings back old Google apps logos and icons for Gmail, Drive, Calendar and Meet.",
    "permissions": [],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/16.png",
            "32": "images\/32.png",
            "48": "images\/48.png",
            "128": "images\/128.png"
        }
    },
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*",
                "*:\/\/drive.google.com\/*",
                "*:\/\/calendar.google.com\/*",
                "*:\/\/meet.google.com\/*"
            ],
            "js": [
                "main.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                "*:\/\/mail.google.com\/*",
                "*:\/\/drive.google.com\/*",
                "*:\/\/calendar.google.com\/*",
                "*:\/\/meet.google.com\/*"
            ]
        }
    ],
    "manifest_version": 3
}