Simple Dic (Instant Dictionary)
Simple dic is a dictionary chrome extension for easy to check words on a web page
Simple Dic (Instant Dictionary)คืออะไร?
Simple Dic (Instant Dictionary) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Happy Larry Kim และคุณลักษณะหลักของมันคือ "Simple dic is a dictionary chrome extension for easy to check words on a web page"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Simple Dic (Instant Dictionary)
ดาวน์โหลดไฟล์ส่วนขยาย Simple Dic (Instant Dictionary) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
* Simple Dic is a dictionary chrome extension for easy to check words on a web page.
* Keyboard Short cut usage : just Ctrl key + Mouse left click on the word you want to check.
(Mac users can use Mouse double click)
* You can also change the dictionary url on the configuration page.
* More info & source code : https://github.com/LarryKim/SimpleDic/wiki
* Simple Dic은 웹페이지에서 컨트롤키+마우스 왼쪽클릭으로 쉽게 단어의 정보를 보여주는 확장 프로그램입니다.
(맥유저는 마우스 더블클릭으로 사용가능)
* 사전 URL은 환경설정에서 자유롭게 변경이 가능합니다.
* 추가정보 및 소스코드 : https://github.com/LarryKim/SimpleDic/wiki ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | nckcfdmjoihejoigkinnajfaeepfgaak |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/simple-dic-instant-dictio/nckcfdmjoihejoigkinnajfaeepfgaak |
| คำอธิบาย | Simple dic is a dictionary chrome extension for easy to check words on a web page |
| ขนาดไฟล์ | 13.2 KB |
| จำนวนการติดตั้ง | 769 |
| เวอร์ชันปัจจุบัน | 0.25 |
| อัปเดตครั้งล่าสุด | 2013-10-29 |
| วันที่เผยแพร่ | 2013-10-28 |
| คะแนน | 3.80/5 รวมทั้งหมด 5 คะแนน |
| ผู้พัฒนา | Happy Larry Kim |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://github.com/LarryKim/SimpleDic/wiki |
| URL หน้าช่วยเหลือ | https://docs.google.com/document/d/105rgnM1ZqK4Xl43z7O-TxZEoTxtqDEVkrP3uikEPWrs/edit?usp=sharing |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Simple Dic (Instant Dictionary)",
"short_name": "Simple Dic",
"description": "Simple dic is a dictionary chrome extension for easy to check words on a web page",
"version": "0.25",
"options_page": "options.html",
"background": {
"scripts": [
".\/js\/background.js"
]
},
"icons": {
"32": ".\/icon\/icon-32.png",
"128": ".\/icon\/icon-128.png"
},
"browser_action": {
"default_icon": ".\/icon\/icon-32.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
".\/js\/lib.js",
".\/js\/content.js"
]
}
],
"permissions": [
"*:\/\/*\/*",
"storage"
]
} | |