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
官方網址 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"
}