Change Webpage Fonts

Change Webpage Fonts

ما هو Change Webpage Fonts؟

Change Webpage Fonts هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Change Webpage Fonts".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Change Webpage Fonts

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

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

                        If the text on the page is difficult to read or not clear enough.
You can:
1) Change the font on the page
2) Increase / decrease text size                    

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

الاسم Change Webpage Fonts Change Webpage Fonts
ID afelmehoohjbjfpjbadonkcondbilglp
عنوان URL الرسمي https://chromewebstore.google.com/detail/change-webpage-fonts/afelmehoohjbjfpjbadonkcondbilglp
الوصف Change Webpage Fonts
حجم الملف 31.82 KB
عدد التثبيتات 2,449
النسخة الحالية 0.0.1
آخر تحديث 2020-01-24
تاريخ النشر 2020-01-19
تقييم 4.31/5 مجموع تقييمات 29
المطور Unknown
نوع الدفع free
اللغات المدعومة en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Kirill Bulygin",
    "background": {
        "scripts": [
            "background\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "128": "icons\/icon_128.png"
        },
        "default_popup": "popup\/main_popup.html",
        "default_title": "Page font"
    },
    "content_scripts": [
        {
            "js": [
                "content_scripts__run_at_end.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "js": [
                "content_scripts__run_at_start.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "description": "Change Webpage Fonts",
    "icons": {
        "128": "icons\/icon_128.png"
    },
    "manifest_version": 2,
    "name": "Change Webpage Fonts",
    "permissions": [
        "storage",
        "tabs",
        "activeTab"
    ],
    "version": "0.0.1"
}