Wikipedia-Interlink

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

Co je Wikipedia-Interlink?

Wikipedia-Interlink je rozšíření Chrome vyvinuté ksaga, a jeho hlavní funkcí je „In Wikipedia, insert a link to the other language version of the page, under the title.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Wikipedia-Interlink

Stáhněte si soubory rozšíření Wikipedia-Interlink ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Wikipedia-Interlink Wikipedia-Interlink
ID eieglkpnekdkplneinloajdeknicmjkm
Oficiální URL https://chromewebstore.google.com/detail/wikipedia-interlink/eieglkpnekdkplneinloajdeknicmjkm
Popis In Wikipedia, insert a link to the other language version of the page, under the title.
Velikost souboru 9.18 KB
Počet instalací 90
Aktuální Verze 1.1.0
Poslední Aktualizace 2023-09-20
Datum Vydání 2015-06-19
Hodnocení 4.50/5 Celkem 2 Hodnocení
Vývojář ksaga
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
}