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 là gì?
Latin dictionary là một tiện ích mở rộng Chrome được phát triển bởi randomxpies, và tính năng chính của nó là "Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to…".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Latin dictionary
Tải xuống các tệp mở rộng Latin dictionary dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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/.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Latin dictionary |
ID | gnokbeehdoiaaalamhekhopdgiamfggp |
URL Chính Thức | https://chromewebstore.google.com/detail/latin-dictionary/gnokbeehdoiaaalamhekhopdgiamfggp |
Mô tả | Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to… |
Kích Thước Tệp | 555 KB |
Số Lần Cài Đặt | 335 |
Phiên Bản Hiện Tại | 7 |
Cập Nhật Lần Cuối | 2021-08-30 |
Ngày Phát Hành | 2020-11-17 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | randomxpies |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |