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.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Refined Wikipedia拡張機能のCRXファイルをダウンロード

Refined Wikipedia拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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 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
Eメール [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"
            ]
        }
    ]
}