Legacy Wikipedia
Forces various old layouts of Wikipedia
什麼是Legacy Wikipedia?
Legacy Wikipedia是由emy開發的Chrome擴展程式,該擴展的主要功能是“Forces various old layouts of Wikipedia”。
擴展截圖
下載Legacy Wikipedia擴展crx文件
下載Legacy Wikipedia擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This is a simple addon that forces various older layouts on Wikipedia.
擴展基本資訊
名稱 | Legacy Wikipedia |
ID | hicopjpgmpodjhhddlgmjnincebphfaa |
官方網址 | 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 |
說明頁面URL | 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" ] } |