Font Fixer
Changes all the fonts on your web pages so they're readable
Cos'è Font Fixer?
Font Fixer è un'estensione di Chrome sviluppata da HMH Technology Labs, e la sua funzione principale è "Changes all the fonts on your web pages so they're readable".
Scarica il file CRX dell'estensione Font Fixer
Scarica i file di estensione Font Fixer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Informazioni di Base sull'Estensione
Nome | Font Fixer |
ID | lnfpnnigpfkkimhgdmoodbfojnipgdjj |
URL Ufficiale | https://chromewebstore.google.com/detail/font-fixer/lnfpnnigpfkkimhgdmoodbfojnipgdjj |
Descrizione | Changes all the fonts on your web pages so they're readable |
Dimensione del File | 41.06 KB |
Conteggio Installazioni | 29 |
Versione Corrente | 1 |
Ultimo Aggiornamento | 2016-04-17 |
Data di Pubblicazione | 2016-04-17 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | HMH Technology Labs |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |