Old Google Logos And Icons
Brings back old Google apps logos and icons for Gmail, Drive, Calendar and Meet.
Vad är Old Google Logos And Icons?
Old Google Logos And Icons är en Chrome-tillägg utvecklad av omniZero, och dess huvudfunktion är "Brings back old Google apps logos and icons for Gmail, Drive, Calendar and Meet.".
Tilläggsskärmbilder
Ladda ner Old Google Logos And Icons-förlängningens CRX-fil
Ladda ner Old Google Logos And Icons-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Old Google Logos And Icons |
ID | jfhmfocmbambgopbjhkdncafdlkohmnm |
Officiell webbadress | https://chromewebstore.google.com/detail/old-google-logos-and-icon/jfhmfocmbambgopbjhkdncafdlkohmnm |
Beskrivning | Brings back old Google apps logos and icons for Gmail, Drive, Calendar and Meet. |
Filstorlek | 344 KB |
Antal Installationer | 2,444 |
Aktuell Version | 1.1.4 |
Senast Uppdaterad | 2023-08-24 |
Publiceringsdatum | 2020-11-11 |
Betyg | 3.76/5 Totalt 17 Betyg |
Utvecklare | omniZero |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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 } |