Font Fixer

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

ما هو Font Fixer؟

Font Fixer هو إضافة Chrome تم تطويرها بواسطة HMH Technology Labs، والميزة الرئيسية لها هي "Changes all the fonts on your web pages so they're readable".

تحميل ملف CRX للإضافة Font Fixer

قم بتنزيل ملفات الامتداد Font Fixer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                                            

معلومات أساسية عن التمديد

الاسم Font Fixer Font Fixer
ID lnfpnnigpfkkimhgdmoodbfojnipgdjj
عنوان URL الرسمي https://chromewebstore.google.com/detail/font-fixer/lnfpnnigpfkkimhgdmoodbfojnipgdjj
الوصف Changes all the fonts on your web pages so they're readable
حجم الملف 41.06 KB
عدد التثبيتات 29
النسخة الحالية 1
آخر تحديث 2016-04-17
تاريخ النشر 2016-04-17
تقييم 5.00/5 مجموع تقييمات 2
المطور HMH Technology Labs
نوع الدفع free
اللغات المدعومة 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"
            ]
        }
    ]
}