System Font Everywhere

Use system font on the web

System Font Everywhere là gì?

System Font Everywhere là một tiện ích mở rộng Chrome được phát triển bởi S.J. Zhang, và tính năng chính của nó là "Use system font on the web".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng System Font Everywhere

Tải xuống các tệp mở rộng System Font Everywhere 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

                        Use this extension to apply System Fonts to the internet. Use San Francisco on macOS and Segoe UI on Windows 10 for the best legibility when you need to read, or on other sites with unfavorable font choices.                    

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

Tên System Font Everywhere System Font Everywhere
ID dcncgmembfephfbibnnigchndgncmdnj
URL Chính Thức https://chromewebstore.google.com/detail/system-font-everywhere/dcncgmembfephfbibnnigchndgncmdnj
Mô tả Use system font on the web
Kích Thước Tệp 644 KB
Số Lần Cài Đặt 317
Phiên Bản Hiện Tại 0.0.3
Cập Nhật Lần Cuối 2022-12-12
Ngày Phát Hành 2020-03-06
Đánh Giá 2.60/5 Tổng số 5 Đánh Giá
Nhà Phát Triển S.J. Zhang
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://sj.land
URL Trang Trợ Giúp https://sj.land
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "System Font Everywhere",
    "short_name": "SF Everywhere",
    "version": "0.0.3",
    "description": "Use system font on the web",
    "action": {
        "default_title": "System Font Everywhere",
        "default_icon": "off-icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "match_about_blank": true,
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "exclude_globs": [
                "*\/chrome\/newtab*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "host_permissions": [
        ""
    ],
    "icons": {
        "128": "128.png"
    }
}