Wikipedia-Interlink

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

Wikipedia-Interlinkคืออะไร?

Wikipedia-Interlink เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ksaga และคุณลักษณะหลักของมันคือ "In Wikipedia, insert a link to the other language version of the page, under the title."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Wikipedia-Interlink

ดาวน์โหลดไฟล์ส่วนขยาย 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"
}