Wikipedia-Interlink

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

Qu'est-ce que Wikipedia-Interlink ?

Wikipedia-Interlink est une extension Chrome développée par ksaga, et sa fonction principale est "In Wikipedia, insert a link to the other language version of the page, under the title.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Wikipedia-Interlink

Téléchargez les fichiers d'extension Wikipedia-Interlink au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Wikipedia-Interlink Wikipedia-Interlink
ID eieglkpnekdkplneinloajdeknicmjkm
URL Officiel https://chromewebstore.google.com/detail/wikipedia-interlink/eieglkpnekdkplneinloajdeknicmjkm
Description In Wikipedia, insert a link to the other language version of the page, under the title.
Taille du Fichier 9.18 KB
Nombre d'Installations 90
Version Actuelle 1.1.0
Dernière Mise à Jour 2023-09-20
Date de Publication 2015-06-19
Évaluation 4.50/5 Total 2 Évaluations
Développeur ksaga
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
}