Font Fixer

Changes all the fonts on your web pages so they're readable

Apa itu Font Fixer?

Font Fixer adalah ekstensi Chrome yang dikembangkan oleh HMH Technology Labs, dan fitur utamanya adalah "Changes all the fonts on your web pages so they're readable".

Unduh Berkas CRX Ekstensi Font Fixer

Unduh file ekstensi Font Fixer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                                            

Informasi Dasar Ekstensi

Nama Font Fixer Font Fixer
ID lnfpnnigpfkkimhgdmoodbfojnipgdjj
URL Resmi https://chromewebstore.google.com/detail/font-fixer/lnfpnnigpfkkimhgdmoodbfojnipgdjj
Deskripsi Changes all the fonts on your web pages so they're readable
Ukuran File 41.06 KB
Jumlah Instalasi 29
Versi Saat Ini 1
Terakhir Diperbarui 2016-04-17
Tanggal Publikasi 2016-04-17
Penilaian 5.00/5 Total 2 Penilaian
Pengembang HMH Technology Labs
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}