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文件
下載Sender Avatar Icons for Gmail擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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) 擴展基本資訊
| 名稱 | |
| ID | mmppbafobakmpfdhgdmbokodhdcecaii |
| 官方網址 | 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
}
} | |