Twitter Font Fix
Makes the font size same for all tweets on the new Twitter profile pages.
Что такое Twitter Font Fix?
Twitter Font Fix - это расширение Chrome, разработанное https://klivk.com, и его основная функция - "Makes the font size same for all tweets on the new Twitter profile pages.".
Снимки экрана расширения
Скачать файл CRX расширения Twitter Font Fix
Скачайте файлы расширений Twitter Font Fix в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | Twitter Font Fix |
ID | lnddiegkdhlfgpmfbjffeegbkkomaebn |
Официальный URL | https://chromewebstore.google.com/detail/twitter-font-fix/lnddiegkdhlfgpmfbjffeegbkkomaebn |
Описание | Makes the font size same for all tweets on the new Twitter profile pages. |
Размер файла | 5.93 KB |
Количество установок | 172 |
Текущая Версия | 1.0.1 |
Последнее Обновление | 2016-03-10 |
Дата публикации | 2016-03-10 |
Рейтинг | 4.33/5 Всего 6 оценок |
Разработчик | https://klivk.com |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы политики конфиденциальности | https://serdar.work/chrome-extensions/privacy-policy.html |
Поддерживаемые языки | 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" } |