Refined Wikipedia
Enforces the mobile web version of Wikipedia and improves its interface.
Qu'est-ce que Refined Wikipedia ?
Refined Wikipedia est une extension Chrome développée par Ismael Martínez, et sa fonction principale est "Enforces the mobile web version of Wikipedia and improves its interface.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Refined Wikipedia
Téléchargez les fichiers d'extension Refined Wikipedia au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Refined Wikipedia |
ID | cnmnmlclbofploblcanilidpmklleppe |
URL Officiel | https://chromewebstore.google.com/detail/refined-wikipedia/cnmnmlclbofploblcanilidpmklleppe |
Description | Enforces the mobile web version of Wikipedia and improves its interface. |
Taille du Fichier | 21.49 KB |
Nombre d'Installations | 382 |
Version Actuelle | 0.1.6 |
Dernière Mise à Jour | 2022-04-09 |
Date de Publication | 2019-08-08 |
Évaluation | 3.73/5 Total 15 Évaluations |
Développeur | Ismael Martínez |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/ismamz/refined-wikipedia |
URL de la Page d'Aide | https://github.com/ismamz/refined-wikipedia |
Langues Prises en Charge | 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" ] } ] } |