Refined Wikipedia
Enforces the mobile web version of Wikipedia and improves its interface.
Refined Wikipedia là gì?
Refined Wikipedia là một tiện ích mở rộng Chrome được phát triển bởi Ismael Martínez, và tính năng chính của nó là "Enforces the mobile web version of Wikipedia and improves its interface.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Refined Wikipedia
Tải xuống các tệp mở rộng Refined Wikipedia dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Refined Wikipedia |
ID | cnmnmlclbofploblcanilidpmklleppe |
URL Chính Thức | https://chromewebstore.google.com/detail/refined-wikipedia/cnmnmlclbofploblcanilidpmklleppe |
Mô tả | Enforces the mobile web version of Wikipedia and improves its interface. |
Kích Thước Tệp | 21.49 KB |
Số Lần Cài Đặt | 382 |
Phiên Bản Hiện Tại | 0.1.6 |
Cập Nhật Lần Cuối | 2022-04-09 |
Ngày Phát Hành | 2019-08-08 |
Đánh Giá | 3.73/5 Tổng số 15 Đánh Giá |
Nhà Phát Triển | Ismael Martínez |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/ismamz/refined-wikipedia |
URL Trang Trợ Giúp | https://github.com/ismamz/refined-wikipedia |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |