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"
    }
}