Old Google Logos And Icons
Brings back old Google apps logos and icons for Gmail, Drive, Calendar and Meet.
What is Old Google Logos And Icons?
Old Google Logos And Icons is a Chrome extension developed by omniZero, and its main feature is "Brings back old Google apps logos and icons for Gmail, Drive, Calendar and Meet.".
Extension Screenshots
Download Old Google Logos And Icons Extension CRX File
Download Old Google Logos And Icons extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Old Google Logos And Icons |
ID | jfhmfocmbambgopbjhkdncafdlkohmnm |
Official URL | https://chromewebstore.google.com/detail/old-google-logos-and-icon/jfhmfocmbambgopbjhkdncafdlkohmnm |
Description | Brings back old Google apps logos and icons for Gmail, Drive, Calendar and Meet. |
File Size | 344 KB |
Installation Count | 2,444 |
Current Version | 1.1.4 |
Last Updated | 2023-08-24 |
Publish Date | 2020-11-11 |
Rating | 3.76/5 Total 17 Ratings |
Developer | omniZero |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } |