Sender Avatar Icons for Gmail
Unofficial Plugin. Displays avatars brand icons for senders in message view
Sender Avatar Icons for Gmail란 무엇입니까?
Sender Avatar Icons for Gmail은(는) https://christianoliff.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Unofficial Plugin. Displays avatars brand icons for senders in message view"입니다.
확장 프로그램 스크린샷
Sender Avatar Icons for Gmail 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Adds sender avatar icons for hundreds of popular brands - Super-fast with no JavaScript or external resources - All icons are hi-res SVG from Font Awesome (https://fontawesome.com/icons?s=brands) - Free and Open Source database (https://github.com/coliff/sender-brand-icon-avatars-for-email)
확장 프로그램 기본 정보
이름 | Sender Avatar Icons for Gmail |
ID | mmppbafobakmpfdhgdmbokodhdcecaii |
공식 URL | https://chromewebstore.google.com/detail/sender-avatar-icons-for-g/mmppbafobakmpfdhgdmbokodhdcecaii |
설명 | Unofficial Plugin. Displays avatars brand icons for senders in message view |
파일 크기 | 221 KB |
설치 횟수 | 26 |
현재 버전 | 3.10.17 |
최근 업데이트 | 2023-10-17 |
출시 날짜 | 2020-06-20 |
개발자 | https://christianoliff.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/coliff/sender-brand-icon-avatars-for-email |
도움말 페이지 URL | https://github.com/coliff/sender-brand-icon-avatars-for-email |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Sender Avatar Icons for Gmail", "version": "3.10.17", "description": "Unofficial Plugin. Displays avatars brand icons for senders in message view", "homepage_url": "https:\/\/mail.google.com\/mail\/u\/", "author": "C.Oliff", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_icon": "icons\/icon48.png", "default_name": "Sender Avatar Icons for Gmail" }, "content_scripts": [ { "css": [ "css\/fa.css", "css\/extra.css", "css\/simple-icons.css", "css\/trimble.css" ], "matches": [ "https:\/\/mail.google.com\/mail\/*" ] } ], "content_security_policy": "object-src 'self'", "permissions": [ "activeTab", "https:\/\/mail.google.com\/mail\/*" ], "optional_permissions": [ "https:\/\/*\/*" ], "background": { "scripts": [ "content.js" ], "persistent": true } } |