Simple Dic (Instant Dictionary)

Simple dic is a dictionary chrome extension for easy to check words on a web page

Simple Dic (Instant Dictionary) là gì?

Simple Dic (Instant Dictionary) là một tiện ích mở rộng Chrome được phát triển bởi Happy Larry Kim, và tính năng chính của nó là "Simple dic is a dictionary chrome extension for easy to check words on a web page".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Simple Dic (Instant Dictionary)

Tải xuống các tệp mở rộng Simple Dic (Instant 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

                        * 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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Simple Dic (Instant Dictionary) Simple Dic (Instant Dictionary)
ID nckcfdmjoihejoigkinnajfaeepfgaak
URL Chính Thức https://chromewebstore.google.com/detail/simple-dic-instant-dictio/nckcfdmjoihejoigkinnajfaeepfgaak
Mô tả Simple dic is a dictionary chrome extension for easy to check words on a web page
Kích Thước Tệp 13.2 KB
Số Lần Cài Đặt 769
Phiên Bản Hiện Tại 0.25
Cập Nhật Lần Cuối 2013-10-29
Ngày Phát Hành 2013-10-28
Đánh Giá 3.80/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Happy Larry Kim
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/LarryKim/SimpleDic/wiki
URL Trang Trợ Giúp https://docs.google.com/document/d/105rgnM1ZqK4Xl43z7O-TxZEoTxtqDEVkrP3uikEPWrs/edit?usp=sharing
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}