System Font Everywhere

Use system font on the web

System Font Everywhere क्या है?

System Font Everywhere S.J. Zhang द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Use system font on the web"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में System Font Everywhere एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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