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 claudiopostinghel द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Restore the old icon on Meet, Calendar, Gmail etc to make tabs more recognizable"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Restore old Google icons एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 } } |