Modern for Wikipedia
Wikipedia gets a beautiful, clean, modern interface.
Τι είναι το Modern for Wikipedia;
Το Modern for Wikipedia είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://modernwiki.app, και η κύρια λειτουργία του είναι "Wikipedia gets a beautiful, clean, modern interface.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Modern for Wikipedia
Λήψη αρχείων επέκτασης Modern for Wikipedia σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Enhance your Wikipedia experience with a beautiful, clean, modern design that's fully customizable. Once installed, Modern will simply apply the new look and features to existing Wikipedia article pages, without you having to do anything. All current features on Wikipedia are supported, this extension simply builds upon the existing interface to offer many improvements, including: ✔ Themes (light, dark, sepia, slate, black) ✔ Fonts (sans, serif, change font size) ✔ Styles (column width, line height) ✔ Languages (menu to switch, fully translated interface) ✔ User accounts (all wikipedia account features accessible from menu) ✔ History (quickly jump to articles you've previously viewed) ✔ Search (powerful autocomplete with preview text & images) ✔ Trending (see today's most read articles) ✔ Contents (fixed to left side for easy navigation, can be hidden) ✔ Editing (full editing controls, history, watch etc) ✔ Switch back to the old design (if needed) with one click ✔ More improvements planned for upcoming releases! If you have any questions, need help or have any suggestions, please get in touch: [email protected] Note: If you're logged into Wikipedia, you must use the default skin for the extension to work. ---------- Wikipedia™ is a registered trademark of the Wikimedia Foundation, Inc. This extension is not endorsed by, affiliated with, or sponsored by Wikipedia™. ---------- Updates: v1.40 - Listen to articles with new text-to-speech feature - Fixed redirect bug on wikipedia home page v1.25 - New wikipedia design fix v1.24 - History bug fix v1.23 - Fix for mobile wikipedia pages (redirect to non-mobile version) - Fixes for image viewer - Style fixes for Italian articles - Scrollbar style fixes for dark themes on mac - New icon v1.22 - Contents sidebar settings (set font size, line height & width) - Better support for large screens (more width settings) - New settings --- Auto dark theme (changes to your last used light/dark theme) --- Fixed header (turn off to hide when scrolled down) --- Open links in new tab --- Hide article links --- Justify text --- Show bullet points on contents - Fixed bugs with article width / centering - Brought back red links for articles that don't exist v1.21 - Mac scrollbars reverted to native style - Contents scrollbar only visible on hover (windows) v1.20 - Search box for languages menu - Nicer scrollbar styles - Centered article text when contents hidden (removed left padding) - Added left padding to article text when contents visible - Fixed french dark theme + languages menu - Fixed user menu for non-english languages - Fixed font size not changeable for Chinese, Japanese, and Korean - Removed system-ui font (fix for east-asian windows fonts) - Fixed display of math equations in dark mode - Made search box usable at narrow widths v1.11 - Bug fixes v1.0 - First version
Βασικές Πληροφορίες Επέκτασης
Όνομα | Modern for Wikipedia |
ID | emdkdnnopdnajipoapepbeeiemahbjcn |
Επίσημο URL | https://chromewebstore.google.com/detail/modern-for-wikipedia/emdkdnnopdnajipoapepbeeiemahbjcn |
Περιγραφή | Wikipedia gets a beautiful, clean, modern interface. |
Μέγεθος Αρχείου | 391 KB |
Αριθμός Εγκαταστάσεων | 20,000 |
Τρέχουσα Έκδοση | 1.40 |
Τελευταία Ενημέρωση | 2023-05-03 |
Ημερομηνία Δημοσίευσης | 2021-12-06 |
Αξιολόγηση | 4.63/5 Συνολικά 136 Αξιολογήσεις |
Προγραμματιστής | https://modernwiki.app |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://www.modernwiki.app |
Διεύθυνση URL της Σελίδας Βοήθειας | https://www.modernwiki.app/contact |
URL της Σελίδας Πολιτικής Απορρήτου | https://www.modernredesigns.com/privacy.html |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.40", "manifest_version": 2, "name": "Modern for Wikipedia", "short_name": "Modern for Wikipedia", "description": "Wikipedia gets a beautiful, clean, modern interface.", "browser_action": { "default_title": "Modern for Wikipedia", "default_icon": { "16": "images\/icon_16.png", "48": "images\/icon_48.png", "96": "images\/icon_96.png", "128": "images\/icon_128.png", "256": "images\/icon_256.png" }, "default_popup": "popup.html" }, "icons": { "16": "images\/icon_16.png", "48": "images\/icon_48.png", "96": "images\/icon_96.png", "128": "images\/icon_128.png", "256": "images\/icon_256.png" }, "permissions": [ "tabs", "storage", "*:\/\/*.wikipedia.org\/*" ], "background": { "scripts": [ "jquery-3.5.1.min.js", "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.wikipedia.org\/*" ], "js": [ "content_start.js" ], "run_at": "document_start" }, { "matches": [ "*:\/\/*.wikipedia.org\/*" ], "js": [ "jquery-3.5.1.min.js", "content.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "images\/*", "content.css" ] } |