Restore old Google icons
Restore the old icon on Meet, Calendar and Gmail to make tabs more recognizable
What is Restore old Google icons?
Restore old Google icons is a Chrome extension developed by claudiopostinghel, and its main feature is "Restore the old icon on Meet, Calendar and Gmail to make tabs more recognizable".
Extension Screenshots
Download Restore old Google icons Extension CRX File
Download Restore old Google 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
This extension restore the old icon on Meet, Calendar and Gmail to make tabs more recognizable. That increases accessibility. Super simple :) nothing more.
Extension Basic Information
Name | Restore old Google icons |
ID | ggjnppcaflhlajblielgecndhfdolead |
Official URL | https://chromewebstore.google.com/detail/restore-old-google-icons/ggjnppcaflhlajblielgecndhfdolead |
Description | Restore the old icon on Meet, Calendar and Gmail to make tabs more recognizable |
File Size | 182 KB |
Installation Count | 222 |
Current Version | 0.1 |
Last Updated | 2020-11-03 |
Publish Date | 2020-11-02 |
Rating | 5.00/5 Total 2 Ratings |
Developer | claudiopostinghel |
[email protected] | |
Payment Type | free |
Extension Website | http://restoreoldicons.xyz/ |
Supported Languages | 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 } } |