Latin dictionary
Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to…
Latin dictionaryとは何ですか?
Latin dictionaryはrandomxpiesによって開発されたChromeの拡張機能で、その主な機能は「Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to…」です。
拡張機能のスクリーンショット
Latin dictionary拡張機能のCRXファイルをダウンロード
Latin dictionary拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to open the context menu, select 'Translate to English'.
Technical details:
I am looking up the word's lemma, then I check for translation on https://www.online-latin-dictionary.com/latin-english-dictionary.php. If I don't get anything I check again with http://www.perseus.tufts.edu/. 拡張機能の基本情報
| 名前 | |
| ID | gnokbeehdoiaaalamhekhopdgiamfggp |
| 公式URL | https://chromewebstore.google.com/detail/latin-dictionary/gnokbeehdoiaaalamhekhopdgiamfggp |
| 説明 | Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to… |
| ファイルサイズ | 555 KB |
| インストール数 | 335 |
| 現在のバージョン | 7 |
| 最終更新日 | 2021-08-30 |
| 公開日 | 2020-11-17 |
| 評価 | 5.00/5 合計 3 レビュー |
| 開発者 | randomxpies |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Latin dictionary",
"version": "7",
"background": {
"scripts": [
"main.js"
],
"persistent": false,
"default_icon": {
"16": "logo.png",
"24": "logo_big.png"
}
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"file:\/\/*"
],
"js": [
"contentScript.js"
],
"css": [
"contentscript.css"
],
"run_at": "document_end",
"all_frames": true
}
],
"permissions": [
"contextMenus"
],
"icons": {
"16": "logo.png",
"24": "logo_big.png"
},
"web_accessible_resources": [
"*.ttf"
]
} | |