Twitter Font Fix

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

Co to jest Twitter Font Fix?

Twitter Font Fix to rozszerzenie Chrome opracowane przez https://klivk.com, a jego główną funkcją jest „Makes the font size same for all tweets on the new Twitter profile pages.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Twitter Font Fix

Pobierz pliki rozszerzeń Twitter Font Fix w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Twitter Font Fix Twitter Font Fix
ID lnddiegkdhlfgpmfbjffeegbkkomaebn
Oficjalny URL https://chromewebstore.google.com/detail/twitter-font-fix/lnddiegkdhlfgpmfbjffeegbkkomaebn
Opis Makes the font size same for all tweets on the new Twitter profile pages.
Rozmiar pliku 5.93 KB
Liczba instalacji 172
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2016-03-10
Data Publikacji 2016-03-10
Ocena 4.33/5 Łącznie 6 Oceny
Deweloper https://klivk.com
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://serdar.work/chrome-extensions/privacy-policy.html
Obsługiwane Języki 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"
}