Restore old Google icons
Restore the old icon on Meet, Calendar, Gmail etc to make tabs more recognizable
ما هو Restore old Google icons؟
Restore old Google icons هو إضافة Chrome تم تطويرها بواسطة claudiopostinghel، والميزة الرئيسية لها هي "Restore the old icon on Meet, Calendar, Gmail etc to make tabs more recognizable".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Restore old Google icons
قم بتنزيل ملفات الامتداد Restore old Google icons بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension restore the old icon on Meet, Calendar and Gmail to make tabs more recognizable. That increases accessibility. Super simple :) nothing more.
معلومات أساسية عن التمديد
الاسم | Restore old Google icons |
ID | iellnmonjokmoagdlggagdmfjgpiahmb |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/restore-old-google-icons/iellnmonjokmoagdlggagdmfjgpiahmb |
الوصف | Restore the old icon on Meet, Calendar, Gmail etc to make tabs more recognizable |
حجم الملف | 53.17 KB |
عدد التثبيتات | 10,498 |
النسخة الحالية | 0.2 |
آخر تحديث | 2020-11-06 |
تاريخ النشر | 2020-11-02 |
تقييم | 4.40/5 مجموع تقييمات 100 |
المطور | claudiopostinghel |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://restoreoldicons.xyz/ |
اللغات المدعومة | 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, Gmail etc to make tabs more recognizable", "version": "0.2", "content_scripts": [ { "matches": [ "*:\/\/calendar.google.com\/*" ], "js": [ "calendar_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" ] } ], "permissions": [ "*:\/\/calendar.google.com\/*", "*:\/\/docs.google.com\/*", "*:\/\/drive.google.com\/*", "*:\/\/mail.google.com\/*", "*:\/\/meet.google.com\/*" ], "browser_action": { "default_icon": "icon16.png", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": false } } |