Legacy Wikipedia
Forces various old layouts of Wikipedia
ما هو Legacy Wikipedia؟
Legacy Wikipedia هو إضافة Chrome تم تطويرها بواسطة emy، والميزة الرئيسية لها هي "Forces various old layouts of Wikipedia".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Legacy Wikipedia
قم بتنزيل ملفات الامتداد Legacy Wikipedia بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This is a simple addon that forces various older layouts on Wikipedia.
معلومات أساسية عن التمديد
الاسم | Legacy Wikipedia |
ID | hicopjpgmpodjhhddlgmjnincebphfaa |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/legacy-wikipedia/hicopjpgmpodjhhddlgmjnincebphfaa |
الوصف | Forces various old layouts of Wikipedia |
حجم الملف | 26.06 KB |
عدد التثبيتات | 61 |
النسخة الحالية | 1.0.21 |
آخر تحديث | 2023-04-22 |
تاريخ النشر | 2023-01-29 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | emy |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/sixem/legacy-wikipedia |
عنوان صفحة المساعدة | https://github.com/sixem/legacy-wikipedia |
اللغات المدعومة | 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" ] } |