Change Webpage Fonts

Change Webpage Fonts

Change Webpage Fonts là gì?

Change Webpage Fonts là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Change Webpage Fonts".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Change Webpage Fonts

Tải xuống các tệp mở rộng Change Webpage Fonts dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Change Webpage Fonts Change Webpage Fonts
ID afelmehoohjbjfpjbadonkcondbilglp
URL Chính Thức https://chromewebstore.google.com/detail/change-webpage-fonts/afelmehoohjbjfpjbadonkcondbilglp
Mô tả Change Webpage Fonts
Kích Thước Tệp 31.82 KB
Số Lần Cài Đặt 2,449
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2020-01-24
Ngày Phát Hành 2020-01-19
Đánh Giá 4.31/5 Tổng số 29 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}