Refined Wikipedia
Enforces the mobile web version of Wikipedia and improves its interface.
Hvad er Refined Wikipedia?
Refined Wikipedia er en Chrome-udvidelse udviklet af Ismael Martínez, og dens hovedfunktion er "Enforces the mobile web version of Wikipedia and improves its interface.".
Udvidelsesskærmbilleder
Download Refined Wikipedia-udvidelses-CRX-fil
Download Refined Wikipedia-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Refined Wikipedia |
ID | cnmnmlclbofploblcanilidpmklleppe |
Officiel URL | https://chromewebstore.google.com/detail/refined-wikipedia/cnmnmlclbofploblcanilidpmklleppe |
Beskrivelse | Enforces the mobile web version of Wikipedia and improves its interface. |
Filstørrelse | 21.49 KB |
Antal Installationer | 382 |
Nuværende Version | 0.1.6 |
Senest Opdateret | 2022-04-09 |
Udgivelsesdato | 2019-08-08 |
Bedømmelse | 3.73/5 Samlet 15 Bedømmelser |
Udvikler | Ismael Martínez |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/ismamz/refined-wikipedia |
Hjælpeside-URL | https://github.com/ismamz/refined-wikipedia |
Understøttede Sprog | 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" ] } ] } |