Font Fixer
Changes all the fonts on your web pages so they're readable
Was ist Font Fixer?
Font Fixer ist eine Chrome-Erweiterung, die von HMH Technology Labs entwickelt wurde, und ihr Hauptmerkmal ist "Changes all the fonts on your web pages so they're readable".
Font Fixer-Erweiterungs-CRX-Datei herunterladen
Laden Sie Font Fixer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Grundlegende Informationen zur Erweiterung
Name | Font Fixer |
ID | lnfpnnigpfkkimhgdmoodbfojnipgdjj |
Offizielle URL | https://chromewebstore.google.com/detail/font-fixer/lnfpnnigpfkkimhgdmoodbfojnipgdjj |
Beschreibung | Changes all the fonts on your web pages so they're readable |
Dateigröße | 41.06 KB |
Installationsanzahl | 29 |
Aktuelle Version | 1 |
Letztes Update | 2016-04-17 |
Veröffentlichungsdatum | 2016-04-17 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | HMH Technology Labs |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Font Fixer", "version": "1", "manifest_version": 2, "description": "Changes all the fonts on your web pages so they're readable", "homepage_url": "http:\/\/students.cse.tamu.edu\/habeebh\/", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "page_action": { "default_icon": "icons\/icon19.png", "default_title": "page action demo" }, "permissions": [ "tabs", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "src\/inject\/inject.css" ] }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |