Font Smoothing

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

Τι είναι το Font Smoothing;

Το Font Smoothing είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον evanshortiss, και η κύρια λειτουργία του είναι "Adds configurable font anti-aliasing to all webpages you visit.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Font Smoothing

Λήψη αρχείων επέκτασης Font Smoothing σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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\/"
    ]
}