Refined Wikipedia
Enforces the mobile web version of Wikipedia and improves its interface.
Refined Wikipedia क्या है?
Refined Wikipedia Ismael Martínez द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enforces the mobile web version of Wikipedia and improves its interface."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Refined Wikipedia एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" ] } ] } |