Wikipedia-Interlink
In Wikipedia, insert a link to the other language version of the page, under the title.
Wikipedia-Interlinkとは何ですか?
Wikipedia-Interlinkはksagaによって開発されたChromeの拡張機能で、その主な機能は「In Wikipedia, insert a link to the other language version of the page, under the title.」です。
拡張機能のスクリーンショット
Wikipedia-Interlink拡張機能のCRXファイルをダウンロード
Wikipedia-Interlink拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Wikipedia-Interlink |
ID | eieglkpnekdkplneinloajdeknicmjkm |
公式URL | https://chromewebstore.google.com/detail/wikipedia-interlink/eieglkpnekdkplneinloajdeknicmjkm |
説明 | In Wikipedia, insert a link to the other language version of the page, under the title. |
ファイルサイズ | 9.18 KB |
インストール数 | 90 |
現在のバージョン | 1.1.0 |
最終更新日 | 2023-09-20 |
公開日 | 2015-06-19 |
評価 | 4.50/5 合計 2 レビュー |
開発者 | ksaga |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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" } |