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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
}