Restore old Google icons

Restore the old icon on Meet, Calendar and Gmail to make tabs more recognizable

Restore old Google icons là gì?

Restore old Google icons là một tiện ích mở rộng Chrome được phát triển bởi claudiopostinghel, và tính năng chính của nó là "Restore the old icon on Meet, Calendar and Gmail to make tabs more recognizable".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Restore old Google icons

Tải xuống các tệp mở rộng Restore old Google icons dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension restore the old icon on Meet, Calendar and Gmail to make tabs more recognizable. That increases accessibility.

Super simple :) nothing more.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Restore old Google icons Restore old Google icons
ID ggjnppcaflhlajblielgecndhfdolead
URL Chính Thức https://chromewebstore.google.com/detail/restore-old-google-icons/ggjnppcaflhlajblielgecndhfdolead
Mô tả Restore the old icon on Meet, Calendar and Gmail to make tabs more recognizable
Kích Thước Tệp 182 KB
Số Lần Cài Đặt 222
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2020-11-03
Ngày Phát Hành 2020-11-02
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển claudiopostinghel
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://restoreoldicons.xyz/
Ngôn Ngữ Được Hỗ Trợ 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
    }
}