Wikipedia-Interlink

In Wikipedia, insert a link to the other language version of the page, under the title.

什么是Wikipedia-Interlink?

Wikipedia-Interlink是由ksaga开发的Chrome扩展程序,该扩展的主要功能是“In Wikipedia, insert a link to the other language version of the page, under the title.”。

扩展截图

screenshot
screenshot
screenshot

下载Wikipedia-Interlink扩展crx文件

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

扩展使用说明

                        In Wikipedia, this extension makes links nearby the title to the same Wikipedia page in other languages. You can configure the languages.

This is very useful for the user who uses Wikipedia in multi-languages.

Version 1.1:
* Multiple language support fixes.
* The way settings are saved has been changed due to a requirement from the Chrome Web Store.
* The font replacement feature is no longer available.                    

扩展基本信息

名称 Wikipedia-Interlink Wikipedia-Interlink
ID eieglkpnekdkplneinloajdeknicmjkm
官方URL https://chromewebstore.google.com/detail/wikipedia-interlink/eieglkpnekdkplneinloajdeknicmjkm
简介 In Wikipedia, insert a link to the other language version of the page, under the title.
文件大小 9.18 KB
安装次数 90
当前版本 1.1.0
更新时间 2023-09-20
上架时间 2015-06-19
评分 4.50/5 共2次评分
开发者 ksaga
电子邮箱 [email protected]
付费类型 free
支持的语言 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "version": "1.1.0",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "default_locale": "en",
    "minimum_chrome_version": "88",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.wikipedia.org\/wiki\/*",
                "http:\/\/*.wikipedia.org\/wiki\/*",
                "https:\/\/*.wiktionary.org\/wiki\/*",
                "http:\/\/*.wiktionary.org\/wiki\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html"
}