Font Fixer
Changes all the fonts on your web pages so they're readable
Wat is Font Fixer?
Font Fixer is een Chrome-extensie ontwikkeld door HMH Technology Labs, en de belangrijkste functie is "Changes all the fonts on your web pages so they're readable".
Download het CRX-bestand van de extensie Font Fixer
Download Font Fixer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Basisinformatie over de Extensie
| Naam | |
| ID | lnfpnnigpfkkimhgdmoodbfojnipgdjj |
| Officiële URL | https://chromewebstore.google.com/detail/font-fixer/lnfpnnigpfkkimhgdmoodbfojnipgdjj |
| Beschrijving | Changes all the fonts on your web pages so they're readable |
| Bestandsgrootte | 41.06 KB |
| Aantal Installaties | 29 |
| Huidige Versie | 1 |
| Laatst Bijgewerkt | 2016-04-17 |
| Publicatiedatum | 2016-04-17 |
| Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | HMH Technology Labs |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
]
}
]
} | |