Refined Wikipedia

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

Refined Wikipediaคืออะไร?

Refined Wikipedia เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ismael Martínez และคุณลักษณะหลักของมันคือ "Enforces the mobile web version of Wikipedia and improves its interface."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Refined Wikipedia

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
            ]
        }
    ]
}