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.”。
擴展截圖
下載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 |
ID | jfhmfocmbambgopbjhkdncafdlkohmnm |
官方網址 | 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 |
電子郵箱 | [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 } |