Twitter Font Fix

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

What is Twitter Font Fix?

Twitter Font Fix is a Chrome extension developed by https://klivk.com, and its main feature is "Makes the font size same for all tweets on the new Twitter profile pages.".

Extension Screenshots

screenshot

Download Twitter Font Fix Extension CRX File

Download Twitter Font Fix extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Twitter Font Fix Twitter Font Fix
ID lnddiegkdhlfgpmfbjffeegbkkomaebn
Official URL https://chromewebstore.google.com/detail/twitter-font-fix/lnddiegkdhlfgpmfbjffeegbkkomaebn
Description Makes the font size same for all tweets on the new Twitter profile pages.
File Size 5.93 KB
Installation Count 172
Current Version 1.0.1
Last Updated 2016-03-10
Publish Date 2016-03-10
Rating 4.33/5 Total 6 Ratings
Developer https://klivk.com
Email [email protected]
Payment Type free
Privacy Policy Page URL https://serdar.work/chrome-extensions/privacy-policy.html
Supported Languages 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"
}