Legacy Wikipedia
Forces various old layouts of Wikipedia
Was ist Legacy Wikipedia?
Legacy Wikipedia ist eine Chrome-Erweiterung, die von emy entwickelt wurde, und ihr Hauptmerkmal ist "Forces various old layouts of Wikipedia".
Erweiterungsscreenshots
Legacy Wikipedia-Erweiterungs-CRX-Datei herunterladen
Laden Sie Legacy Wikipedia-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This is a simple addon that forces various older layouts on Wikipedia.
Grundlegende Informationen zur Erweiterung
Name | Legacy Wikipedia |
ID | hicopjpgmpodjhhddlgmjnincebphfaa |
Offizielle URL | https://chromewebstore.google.com/detail/legacy-wikipedia/hicopjpgmpodjhhddlgmjnincebphfaa |
Beschreibung | Forces various old layouts of Wikipedia |
Dateigröße | 26.06 KB |
Installationsanzahl | 61 |
Aktuelle Version | 1.0.21 |
Letztes Update | 2023-04-22 |
Veröffentlichungsdatum | 2023-01-29 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | emy |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/sixem/legacy-wikipedia |
Hilfeseite URL | https://github.com/sixem/legacy-wikipedia |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Legacy Wikipedia", "description": "Forces various old layouts of Wikipedia", "author": "emy", "manifest_version": 3, "version": "1.0.21", "homepage_url": "https:\/\/github.com\/sixem\/legacy-wikipedia", "icons": { "48": "48.png", "128": "128.png" }, "action": { "default_popup": "popup.html" }, "background": { "service_worker": "service.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.wikipedia.org\/wiki\/*", "https:\/\/*.wikipedia.org\/w\/*" ], "js": [ "main.js" ], "run_at": "document_start" } ], "permissions": [ "storage", "webNavigation" ] } |