System Font Everywhere

Use system font on the web

Vad är System Font Everywhere?

System Font Everywhere är en Chrome-tillägg utvecklad av S.J. Zhang, och dess huvudfunktion är "Use system font on the web".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner System Font Everywhere-förlängningens CRX-fil

Ladda ner System Font Everywhere-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn System Font Everywhere System Font Everywhere
ID dcncgmembfephfbibnnigchndgncmdnj
Officiell webbadress https://chromewebstore.google.com/detail/system-font-everywhere/dcncgmembfephfbibnnigchndgncmdnj
Beskrivning Use system font on the web
Filstorlek 644 KB
Antal Installationer 317
Aktuell Version 0.0.3
Senast Uppdaterad 2022-12-12
Publiceringsdatum 2020-03-06
Betyg 2.60/5 Totalt 5 Betyg
Utvecklare S.J. Zhang
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://sj.land
Hjälpsida URL https://sj.land
Stödda Språk 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"
    }
}