Legacy Wikipedia

Forces various old layouts of Wikipedia

什么是Legacy Wikipedia?

Legacy Wikipedia是由emy开发的Chrome扩展程序,该扩展的主要功能是“Forces various old layouts of Wikipedia”。

扩展截图

screenshot
screenshot

下载Legacy Wikipedia扩展crx文件

下载Legacy Wikipedia扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This is a simple addon that forces various older layouts on Wikipedia.                    

扩展基本信息

名称 Legacy 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
帮助页面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"
    ]
}