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