Legacy Wikipedia
Forces various old layouts of Wikipedia
Hvad er Legacy Wikipedia?
Legacy Wikipedia er en Chrome-udvidelse udviklet af emy, og dens hovedfunktion er "Forces various old layouts of Wikipedia".
Udvidelsesskærmbilleder
Download Legacy Wikipedia-udvidelses-CRX-fil
Download Legacy Wikipedia-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
This is a simple addon that forces various older layouts on Wikipedia. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | hicopjpgmpodjhhddlgmjnincebphfaa |
| Officiel URL | https://chromewebstore.google.com/detail/legacy-wikipedia/hicopjpgmpodjhhddlgmjnincebphfaa |
| Beskrivelse | Forces various old layouts of Wikipedia |
| Filstørrelse | 26.06 KB |
| Antal Installationer | 61 |
| Nuværende Version | 1.0.21 |
| Senest Opdateret | 2023-04-22 |
| Udgivelsesdato | 2023-01-29 |
| Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
| Udvikler | emy |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/sixem/legacy-wikipedia |
| Hjælpeside-URL | https://github.com/sixem/legacy-wikipedia |
| Understøttede Sprog | 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"
]
} | |