Refined Wikipedia

Enforces the mobile web version of Wikipedia and improves its interface.

Was ist Refined Wikipedia?

Refined Wikipedia ist eine Chrome-Erweiterung, die von Ismael Martínez entwickelt wurde, und ihr Hauptmerkmal ist "Enforces the mobile web version of Wikipedia and improves its interface.".

Erweiterungsscreenshots

screenshot
screenshot

Refined Wikipedia-Erweiterungs-CRX-Datei herunterladen

Laden Sie Refined Wikipedia-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Refined Wikipedia Refined Wikipedia
ID cnmnmlclbofploblcanilidpmklleppe
Offizielle URL https://chromewebstore.google.com/detail/refined-wikipedia/cnmnmlclbofploblcanilidpmklleppe
Beschreibung Enforces the mobile web version of Wikipedia and improves its interface.
Dateigröße 21.49 KB
Installationsanzahl 382
Aktuelle Version 0.1.6
Letztes Update 2022-04-09
Veröffentlichungsdatum 2019-08-08
Bewertung 3.73/5 Insgesamt 15 Bewertungen
Entwickler Ismael Martínez
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/ismamz/refined-wikipedia
Hilfeseite URL https://github.com/ismamz/refined-wikipedia
Unterstützte Sprachen 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"
            ]
        }
    ]
}