Wiki Reader
Adjusts Formatting of Wiki Pages for better readability
什麼是Wiki Reader?
Wiki Reader是由Johnbuble開發的Chrome擴展程式,該擴展的主要功能是“Adjusts Formatting of Wiki Pages for better readability”。
擴展截圖
下載Wiki Reader擴展crx文件
下載Wiki Reader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This Chrome Extension modifies wikipedia webpages to:
- limit the horizontal space
- turn the page to dark mode
for better readability, especially on large screens.
No tracking, no ads. 擴展基本資訊
| 名稱 | |
| ID | jdkaiipcpgdgbbiepihiggaflgipbnhb |
| 官方網址 | https://chromewebstore.google.com/detail/wiki-reader/jdkaiipcpgdgbbiepihiggaflgipbnhb |
| 簡介 | Adjusts Formatting of Wiki Pages for better readability |
| 檔案大小 | 42.25 KB |
| 安裝次數 | 110 |
| 目前版本 | 0.4 |
| 更新時間 | 2020-09-21 |
| 上架時間 | 2020-07-05 |
| 評分 | 5.00/5 共 4 次評分 |
| 開發者 | Johnbuble |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/OlJohnny/Wiki-Reader |
| 說明頁面URL | https://github.com/OlJohnny/Wiki-Reader/issues |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Wiki Reader",
"description": "Adjusts Formatting of Wiki Pages for better readability",
"author": "Johnbuble",
"version": "0.4",
"manifest_version": 2,
"browser_action": {
"default_title": "Wiki Reader",
"default_icon": {
"38": "icons\/icon_38.png",
"19": "icons\/icon_19.png"
}
},
"icons": {
"16": "icons\/icon_16.png",
"48": "icons\/icon_48.png",
"128": "icons\/icon_128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.wikipedia.org\/*"
],
"run-at": "document_start",
"css": [
"content.css"
]
}
]
} | |