Font Fixer
Changes all the fonts on your web pages so they're readable
What is Font Fixer?
Font Fixer is a Chrome extension developed by HMH Technology Labs, and its main feature is "Changes all the fonts on your web pages so they're readable".
Download Font Fixer Extension CRX File
Download Font Fixer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Extension Basic Information
Name | Font Fixer |
ID | lnfpnnigpfkkimhgdmoodbfojnipgdjj |
Official URL | https://chromewebstore.google.com/detail/font-fixer/lnfpnnigpfkkimhgdmoodbfojnipgdjj |
Description | Changes all the fonts on your web pages so they're readable |
File Size | 41.06 KB |
Installation Count | 29 |
Current Version | 1 |
Last Updated | 2016-04-17 |
Publish Date | 2016-04-17 |
Rating | 5.00/5 Total 2 Ratings |
Developer | HMH Technology Labs |
Payment Type | free |
Supported Languages | 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" ] } ] } |