Wikipedia-Interlink

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

O que é Wikipedia-Interlink?

Wikipedia-Interlink é uma extensão do Chrome desenvolvida por ksaga, e sua principal característica é "In Wikipedia, insert a link to the other language version of the page, under the title.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Wikipedia-Interlink

Baixe arquivos de extensão Wikipedia-Interlink no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Wikipedia-Interlink Wikipedia-Interlink
ID eieglkpnekdkplneinloajdeknicmjkm
URL Oficial https://chromewebstore.google.com/detail/wikipedia-interlink/eieglkpnekdkplneinloajdeknicmjkm
Descrição In Wikipedia, insert a link to the other language version of the page, under the title.
Tamanho do Arquivo 9.18 KB
Contagem de Instalações 90
Versão Atual 1.1.0
Última Atualização 2023-09-20
Data de Publicação 2015-06-19
Classificação 4.50/5 Total de 2 Avaliações
Desenvolvedor ksaga
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
}