Twitter Font Fix

Makes the font size same for all tweets on the new Twitter profile pages.

Qu'est-ce que Twitter Font Fix ?

Twitter Font Fix est une extension Chrome développée par https://klivk.com, et sa fonction principale est "Makes the font size same for all tweets on the new Twitter profile pages.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Twitter Font Fix

Téléchargez les fichiers d'extension Twitter Font Fix au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Pure CSS.

Normalizes font sizes for all tweets in a Twitter profile page.

Avoid headaches while reading timelines.

Does not mess with your data on Twitter.

Full source code of this extension is available at GitHub.

https://github.com/serd/twitter-font-fix                    

Informations de Base sur l'Extension

Nom Twitter Font Fix Twitter Font Fix
ID lnddiegkdhlfgpmfbjffeegbkkomaebn
URL Officiel https://chromewebstore.google.com/detail/twitter-font-fix/lnddiegkdhlfgpmfbjffeegbkkomaebn
Description Makes the font size same for all tweets on the new Twitter profile pages.
Taille du Fichier 5.93 KB
Nombre d'Installations 172
Version Actuelle 1.0.1
Dernière Mise à Jour 2016-03-10
Date de Publication 2016-03-10
Évaluation 4.33/5 Total 6 Évaluations
Développeur https://klivk.com
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://serdar.work/chrome-extensions/privacy-policy.html
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "__MSG_extDescription__",
    "icons": {
        "128": "icon128.png"
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "css": [
                "mystyles.css"
            ]
        }
    ],
    "homepage_url": "http:\/\/klivk.com\/twitter-font-fix"
}