Jisho Extension
Quickly search on Jisho.org
什麼是Jisho Extension?
Jisho Extension是由Glen Brixey開發的Chrome擴展程式,該擴展的主要功能是“Quickly search on Jisho.org”。
擴展截圖
下載Jisho Extension擴展crx文件
下載Jisho Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Allows you to search quickly on Jisho.org by right-clicking on selected text. If you are searching for a single kanji, the extension will navigate directly to the #kanji page on Jisho.org. The extension also adds a toolbar button with a popup for entering text directly, which may be useful when copying and pasting text from another program.
This extension is open source: https://github.com/gbrixey/jisho-extension 擴展基本資訊
| 名稱 | |
| ID | iblocgbegbfbikfpjajboohgnegaonho |
| 官方網址 | https://chromewebstore.google.com/detail/jisho-extension/iblocgbegbfbikfpjajboohgnegaonho |
| 簡介 | Quickly search on Jisho.org |
| 檔案大小 | 155 KB |
| 安裝次數 | 6,000 |
| 目前版本 | 0.3 |
| 更新時間 | 2021-07-12 |
| 上架時間 | 2017-11-25 |
| 評分 | 4.75/5 共 12 次評分 |
| 開發者 | Glen Brixey |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/gbrixey/jisho-extension |
| 說明頁面URL | https://github.com/gbrixey/jisho-extension |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Jisho Extension",
"version": "0.3",
"description": "Quickly search on Jisho.org",
"browser_action": {
"default_icon": "icon128.png",
"default_popup": "popup.html"
},
"permissions": [
"contextMenus"
],
"background": {
"scripts": [
"shared_functions.js",
"context_menu.js"
]
},
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
}
} | |