Twitter Font Fix

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

Apa itu Twitter Font Fix?

Twitter Font Fix adalah ekstensi Chrome yang dikembangkan oleh https://klivk.com, dan fitur utamanya adalah "Makes the font size same for all tweets on the new Twitter profile pages.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Twitter Font Fix

Unduh file ekstensi Twitter Font Fix dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Twitter Font Fix Twitter Font Fix
ID lnddiegkdhlfgpmfbjffeegbkkomaebn
URL Resmi https://chromewebstore.google.com/detail/twitter-font-fix/lnddiegkdhlfgpmfbjffeegbkkomaebn
Deskripsi Makes the font size same for all tweets on the new Twitter profile pages.
Ukuran File 5.93 KB
Jumlah Instalasi 172
Versi Saat Ini 1.0.1
Terakhir Diperbarui 2016-03-10
Tanggal Publikasi 2016-03-10
Penilaian 4.33/5 Total 6 Penilaian
Pengembang https://klivk.com
Email [email protected]
Tipe Pembayaran free
URL Halaman Kebijakan Privasi https://serdar.work/chrome-extensions/privacy-policy.html
Bahasa yang Didukung 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"
}