Font Fixer
Changes all the fonts on your web pages so they're readable
Vad är Font Fixer?
Font Fixer är en Chrome-tillägg utvecklad av HMH Technology Labs, och dess huvudfunktion är "Changes all the fonts on your web pages so they're readable".
Ladda ner Font Fixer-förlängningens CRX-fil
Ladda ner Font Fixer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Grundläggande Information om Tillägg
| Namn | |
| ID | lnfpnnigpfkkimhgdmoodbfojnipgdjj |
| Officiell webbadress | https://chromewebstore.google.com/detail/font-fixer/lnfpnnigpfkkimhgdmoodbfojnipgdjj |
| Beskrivning | Changes all the fonts on your web pages so they're readable |
| Filstorlek | 41.06 KB |
| Antal Installationer | 29 |
| Aktuell Version | 1 |
| Senast Uppdaterad | 2016-04-17 |
| Publiceringsdatum | 2016-04-17 |
| Betyg | 5.00/5 Totalt 2 Betyg |
| Utvecklare | HMH Technology Labs |
| Betalningssätt | free |
| Stödda Språk | 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"
]
}
]
} | |