System Font Everywhere

Use system font on the web

Apa itu System Font Everywhere?

System Font Everywhere adalah ekstensi Chrome yang dikembangkan oleh S.J. Zhang, dan fitur utamanya adalah "Use system font on the web".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi System Font Everywhere

Unduh file ekstensi System Font Everywhere dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama System Font Everywhere System Font Everywhere
ID dcncgmembfephfbibnnigchndgncmdnj
URL Resmi https://chromewebstore.google.com/detail/system-font-everywhere/dcncgmembfephfbibnnigchndgncmdnj
Deskripsi Use system font on the web
Ukuran File 644 KB
Jumlah Instalasi 317
Versi Saat Ini 0.0.3
Terakhir Diperbarui 2022-12-12
Tanggal Publikasi 2020-03-06
Penilaian 2.60/5 Total 5 Penilaian
Pengembang S.J. Zhang
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://sj.land
URL Halaman Bantuan https://sj.land
Bahasa yang Didukung 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"
    }
}