Wikipedia-Interlink
In Wikipedia, insert a link to the other language version of the page, under the title.
Co to jest Wikipedia-Interlink?
Wikipedia-Interlink to rozszerzenie Chrome opracowane przez ksaga, a jego główną funkcją jest „In Wikipedia, insert a link to the other language version of the page, under the title.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Wikipedia-Interlink
Pobierz pliki rozszerzeń Wikipedia-Interlink w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Wikipedia-Interlink |
ID | eieglkpnekdkplneinloajdeknicmjkm |
Oficjalny URL | https://chromewebstore.google.com/detail/wikipedia-interlink/eieglkpnekdkplneinloajdeknicmjkm |
Opis | In Wikipedia, insert a link to the other language version of the page, under the title. |
Rozmiar pliku | 9.18 KB |
Liczba instalacji | 90 |
Aktualna Wersja | 1.1.0 |
Ostatnia Aktualizacja | 2023-09-20 |
Data Publikacji | 2015-06-19 |
Ocena | 4.50/5 Łącznie 2 Oceny |
Deweloper | ksaga |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } |