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 هو إضافة Chrome تم تطويرها بواسطة omniZero، والميزة الرئيسية لها هي "Brings back old Google apps logos and icons for Gmail, Drive, Calendar and Meet.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Old Google Logos And Icons
قم بتنزيل ملفات الامتداد Old Google Logos And Icons بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان 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 |
البريد الإلكتروني | [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 } |