Legacy Wikipedia
Forces various old layouts of Wikipedia
Apa itu Legacy Wikipedia?
Legacy Wikipedia adalah ekstensi Chrome yang dikembangkan oleh emy, dan fitur utamanya adalah "Forces various old layouts of Wikipedia".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Legacy Wikipedia
Unduh file ekstensi Legacy Wikipedia dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
This is a simple addon that forces various older layouts on Wikipedia.
Informasi Dasar Ekstensi
Nama | Legacy Wikipedia |
ID | hicopjpgmpodjhhddlgmjnincebphfaa |
URL Resmi | https://chromewebstore.google.com/detail/legacy-wikipedia/hicopjpgmpodjhhddlgmjnincebphfaa |
Deskripsi | Forces various old layouts of Wikipedia |
Ukuran File | 26.06 KB |
Jumlah Instalasi | 61 |
Versi Saat Ini | 1.0.21 |
Terakhir Diperbarui | 2023-04-22 |
Tanggal Publikasi | 2023-01-29 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | emy |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/sixem/legacy-wikipedia |
URL Halaman Bantuan | https://github.com/sixem/legacy-wikipedia |
Bahasa yang Didukung | 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" ] } |