Enhance your Gmail with 30 custom fonts. Easy to use, works with all themes for a personalized and clear email experience. 📧🖋️
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "__MSG_name__",
"description": "__MSG_description__",
"default_locale": "en",
"version": "0.0.3",
"manifest_version": 3,
"host_permissions": [
"*://*.google.com/mail*"
],
"permissions": [
"storage"
],
"action": {
"default_popup": "popup.html",
"default_icon": "gmailFont48.png"
},
"content_scripts": [
{
"js": [
"options.js",
"content.js"
],
"css": [
"content.css"
],
"matches": [
"*://*.google.com/mail*"
]
}
],
"icons": {
"48": "gmailFont48.png",
"128": "gmailFont128.png"
},
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"send.png"
],
"matches": [
"*://*.google.com/*"
]
}
]
}