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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Restore the old icon on Meet, Calendar, Gmail etc to make tabs more recognizable"입니다.
확장 프로그램 스크린샷
Restore old Google icons 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 } } |