Refined Wikipedia
Enforces the mobile web version of Wikipedia and improves its interface.
什麼是Refined Wikipedia?
Refined Wikipedia是由Ismael Martínez開發的Chrome擴展程式,該擴展的主要功能是“Enforces the mobile web version of Wikipedia and improves its interface.”。
擴展截圖
下載Refined Wikipedia擴展crx文件
下載Refined Wikipedia擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This Chrome extension enforce a mobile version of Wikipedia and improve its interface for a better experience on desktop. It's strongly inspired by Refined Twitter and Refined GitHub extensions created by Sindre Sorhus. ## Highlights - Dark Mode - Increase font size - Resize width container - Adjust Table of Contents - Many keyboards shortcuts ## Keyboard shortcuts - Go to Search: f - Go to Home: g h - Go to Top (scroll): g t - Go to Back in History: backspace or shift + <--; - Go to Next page in History: shift + -->; - Toggle Dark Mode: d - Open/Close Main Menu: shift+m - Open/Close Language Selector: shift + l - Select Suggested Language: 1 (after open Language Selector) - Focus on First Search Result: 1 (after search) - Scroll Up: w - Scroll Down: s
擴展基本資訊
名稱 | Refined Wikipedia |
ID | cnmnmlclbofploblcanilidpmklleppe |
官方網址 | https://chromewebstore.google.com/detail/refined-wikipedia/cnmnmlclbofploblcanilidpmklleppe |
簡介 | Enforces the mobile web version of Wikipedia and improves its interface. |
檔案大小 | 21.49 KB |
安裝次數 | 382 |
目前版本 | 0.1.6 |
更新時間 | 2022-04-09 |
上架時間 | 2019-08-08 |
評分 | 3.73/5 共 15 次評分 |
開發者 | Ismael Martínez |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/ismamz/refined-wikipedia |
說明頁面URL | https://github.com/ismamz/refined-wikipedia |
支援的語言 | en,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Refined Wikipedia", "version": "0.1.6", "description": "__MSG_extensionDescription__", "homepage_url": "https:\/\/github.com\/ismamz\/refined-wikipedia", "manifest_version": 2, "minimum_chrome_version": "50", "default_locale": "en", "permissions": [ "webRequest", "webRequestBlocking", "https:\/\/wikipedia.org\/*", "https:\/\/*.wikipedia.org\/*" ], "background": { "scripts": [ "background.js" ] }, "icons": { "128": "icon.png" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/m.wikipedia.org\/*", "https:\/\/*.m.wikipedia.org\/*" ], "css": [ "content.css", "dark-mode.css" ], "js": [ "vendor\/mousetrap.js", "vendor\/mousetrap-global-bind.js", "content.js" ] } ] } |