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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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" ] } ] } |