Font Smoothing

Adds configurable font anti-aliasing to all webpages you visit.

Font Smoothing क्या है?

Font Smoothing evanshortiss द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds configurable font anti-aliasing to all webpages you visit."।

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

screenshot
screenshot
screenshot

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

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

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

                        This plugin allows you to force webpages use the WebKit antialiasing feature, or alternatively, completely disable it. As a result you can alter the clarity and legibility of text on web pages.

Simply install the plugin and click the plugin icon to enable or disable smoothing for a given website. The plugin will remember your settings for every site visited.

By default all new tabs will apply smoothing after this plugin is installed. 

Note: If the page was open before installing the plugin then you need to refresh the page.                    

एक्सटेंशन की मूल जानकारी

नाम Font Smoothing Font Smoothing
ID pblodagimcngmkbdjcaphmjbjlnhicnj
आधिकारिक URL https://chromewebstore.google.com/detail/font-smoothing/pblodagimcngmkbdjcaphmjbjlnhicnj
विवरण Adds configurable font anti-aliasing to all webpages you visit.
फ़ाइल का आकार 62.63 KB
स्थापना संख्या 2,001
वर्तमान संस्करण 0.1.0
अंतिम अपडेट 2018-11-02
प्रकाशन तिथि 2018-11-01
रेटिंग 3.50/5 कुल 16 रेटिंग्स
डेवलपर evanshortiss
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Font Smoothing",
    "description": "Adds configurable font anti-aliasing to all webpages you visit.",
    "version": "0.1.0",
    "browser_action": {
        "default_icon": "[email protected]",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "[email protected]",
        "48": "[email protected]",
        "128": "[email protected]"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "apply-smoothing.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/ajax.googleapis.com\/"
    ]
}