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
Eメール [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
}