Legacy Wikipedia
Forces various old layouts of Wikipedia
Vad är Legacy Wikipedia?
Legacy Wikipedia är en Chrome-tillägg utvecklad av emy, och dess huvudfunktion är "Forces various old layouts of Wikipedia".
Tilläggsskärmbilder
Ladda ner Legacy Wikipedia-förlängningens CRX-fil
Ladda ner Legacy Wikipedia-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This is a simple addon that forces various older layouts on Wikipedia. Grundläggande Information om Tillägg
| Namn | |
| ID | hicopjpgmpodjhhddlgmjnincebphfaa |
| Officiell webbadress | https://chromewebstore.google.com/detail/legacy-wikipedia/hicopjpgmpodjhhddlgmjnincebphfaa |
| Beskrivning | Forces various old layouts of Wikipedia |
| Filstorlek | 26.06 KB |
| Antal Installationer | 61 |
| Aktuell Version | 1.0.21 |
| Senast Uppdaterad | 2023-04-22 |
| Publiceringsdatum | 2023-01-29 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | emy |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/sixem/legacy-wikipedia |
| Hjälpsida URL | https://github.com/sixem/legacy-wikipedia |
| Stödda Språk | 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"
]
} | |