Refined Wikipedia

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

Apa itu Refined Wikipedia?

Refined Wikipedia adalah ekstensi Chrome yang dikembangkan oleh Ismael Martínez, dan fitur utamanya adalah "Enforces the mobile web version of Wikipedia and improves its interface.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Refined Wikipedia

Unduh file ekstensi Refined Wikipedia dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Refined Wikipedia Refined Wikipedia
ID cnmnmlclbofploblcanilidpmklleppe
URL Resmi https://chromewebstore.google.com/detail/refined-wikipedia/cnmnmlclbofploblcanilidpmklleppe
Deskripsi Enforces the mobile web version of Wikipedia and improves its interface.
Ukuran File 21.49 KB
Jumlah Instalasi 382
Versi Saat Ini 0.1.6
Terakhir Diperbarui 2022-04-09
Tanggal Publikasi 2019-08-08
Penilaian 3.73/5 Total 15 Penilaian
Pengembang Ismael Martínez
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/ismamz/refined-wikipedia
URL Halaman Bantuan https://github.com/ismamz/refined-wikipedia
Bahasa yang Didukung 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"
            ]
        }
    ]
}