Twitter Font Fix
Makes the font size same for all tweets on the new Twitter profile pages.
什麼是Twitter Font Fix?
Twitter Font Fix是由https://klivk.com開發的Chrome擴展程式,該擴展的主要功能是“Makes the font size same for all tweets on the new Twitter profile pages.”。
擴展截圖
下載Twitter Font Fix擴展crx文件
下載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 擴展基本資訊
| 名稱 | |
| ID | lnddiegkdhlfgpmfbjffeegbkkomaebn |
| 官方網址 | 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"
} | |