System Font Everywhere

Use system font on the web

System Font Everywhereคืออะไร?

System Font Everywhere เป็นส่วนขยายของ Chrome ที่พัฒนาโดย S.J. Zhang และคุณลักษณะหลักของมันคือ "Use system font on the web"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย System Font Everywhere

ดาวน์โหลดไฟล์ส่วนขยาย System Font Everywhere ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ System Font Everywhere System Font Everywhere
ID dcncgmembfephfbibnnigchndgncmdnj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/system-font-everywhere/dcncgmembfephfbibnnigchndgncmdnj
คำอธิบาย Use system font on the web
ขนาดไฟล์ 644 KB
จำนวนการติดตั้ง 317
เวอร์ชันปัจจุบัน 0.0.3
อัปเดตครั้งล่าสุด 2022-12-12
วันที่เผยแพร่ 2020-03-06
คะแนน 2.60/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา S.J. Zhang
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://sj.land
URL หน้าช่วยเหลือ https://sj.land
ภาษาที่รองรับ 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"
    }
}