Twitter Font Fix
Makes the font size same for all tweets on the new Twitter profile pages.
Was ist Twitter Font Fix?
Twitter Font Fix ist eine Chrome-Erweiterung, die von https://klivk.com entwickelt wurde, und ihr Hauptmerkmal ist "Makes the font size same for all tweets on the new Twitter profile pages.".
Erweiterungsscreenshots
Twitter Font Fix-Erweiterungs-CRX-Datei herunterladen
Laden Sie Twitter Font Fix-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | lnddiegkdhlfgpmfbjffeegbkkomaebn |
| Offizielle URL | https://chromewebstore.google.com/detail/twitter-font-fix/lnddiegkdhlfgpmfbjffeegbkkomaebn |
| Beschreibung | Makes the font size same for all tweets on the new Twitter profile pages. |
| Dateigröße | 5.93 KB |
| Installationsanzahl | 172 |
| Aktuelle Version | 1.0.1 |
| Letztes Update | 2016-03-10 |
| Veröffentlichungsdatum | 2016-03-10 |
| Bewertung | 4.33/5 Insgesamt 6 Bewertungen |
| Entwickler | https://klivk.com |
| [email protected] | |
| Zahlungsart | free |
| URL der Datenschutzrichtlinien-Seite | https://serdar.work/chrome-extensions/privacy-policy.html |
| Unterstützte Sprachen | 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"
} | |