Wikipedia-Interlink
In Wikipedia, insert a link to the other language version of the page, under the title.
¿Qué es Wikipedia-Interlink?
Wikipedia-Interlink es una extensión de Chrome desarrollada por ksaga, y su función principal es "In Wikipedia, insert a link to the other language version of the page, under the title.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Wikipedia-Interlink
Descarga archivos de extensión Wikipedia-Interlink en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Wikipedia-Interlink |
ID | eieglkpnekdkplneinloajdeknicmjkm |
URL Oficial | https://chromewebstore.google.com/detail/wikipedia-interlink/eieglkpnekdkplneinloajdeknicmjkm |
Descripción | In Wikipedia, insert a link to the other language version of the page, under the title. |
Tamaño del Archivo | 9.18 KB |
Cantidad de Instalaciones | 90 |
Versión Actual | 1.1.0 |
Última Actualización | 2023-09-20 |
Fecha de Publicación | 2015-06-19 |
Calificación | 4.50/5 Total de 2 Calificaciones |
Desarrollador | ksaga |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" } |