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”。

擴展截圖

screenshot

下載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.                    

擴展基本資訊

名稱 Restore old Google icons Restore old Google icons
ID ggjnppcaflhlajblielgecndhfdolead
官方網址 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
電子郵箱 [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
    }
}