Wikipedia-Interlink

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

Wikipedia-Interlink là gì?

Wikipedia-Interlink là một tiện ích mở rộng Chrome được phát triển bởi ksaga, và tính năng chính của nó là "In Wikipedia, insert a link to the other language version of the page, under the title.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Wikipedia-Interlink

Tải xuống các tệp mở rộng Wikipedia-Interlink dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Wikipedia-Interlink Wikipedia-Interlink
ID eieglkpnekdkplneinloajdeknicmjkm
URL Chính Thức https://chromewebstore.google.com/detail/wikipedia-interlink/eieglkpnekdkplneinloajdeknicmjkm
Mô tả In Wikipedia, insert a link to the other language version of the page, under the title.
Kích Thước Tệp 9.18 KB
Số Lần Cài Đặt 90
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2023-09-20
Ngày Phát Hành 2015-06-19
Đánh Giá 4.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển ksaga
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}