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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย claudiopostinghel และคุณลักษณะหลักของมันคือ "Restore the old icon on Meet, Calendar, Gmail etc to make tabs more recognizable"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Restore old Google icons

ดาวน์โหลดไฟล์ส่วนขยาย 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 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
    }
}