My Dictionary

Get definition or translation of the selected word(s) in popup (multiple choices)

My Dictionary là gì?

My Dictionary là một tiện ích mở rộng Chrome được phát triển bởi HardeepTheDev, và tính năng chính của nó là "Get definition or translation of the selected word(s) in popup (multiple choices)".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng My Dictionary

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

                        NOTE: A new and improved extension is available.

https://chrome.google.com/webstore/detail/lookup-in-popup/akaefbhdlppmfdecoakjogglbjgacdhm


Get definition or translation of selected words in popup, you can choose from multiple dictionaries, add new dictionaries, add websites that are not dictionaries, for more information watch the demo video https://youtu.be/kOOT5MK76UM

Default shortcut: 
- Alt+m on Windows
- Option+m on Mac

Github: https://github.com/harry-private/my_dictionary

CHANGELOG

https://github.com/harry-private/my_dictionary/blob/master/CHANGELOG.md                    

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

Tên My Dictionary My Dictionary
ID dlmmgckeognpojabkkcablldnlfnfgpo
URL Chính Thức https://chromewebstore.google.com/detail/my-dictionary/dlmmgckeognpojabkkcablldnlfnfgpo
Mô tả Get definition or translation of the selected word(s) in popup (multiple choices)
Kích Thước Tệp 108 KB
Số Lần Cài Đặt 817
Phiên Bản Hiện Tại 1.0.01
Cập Nhật Lần Cuối 2021-03-09
Ngày Phát Hành 2020-06-20
Đánh Giá 4.38/5 Tổng số 13 Đánh Giá
Nhà Phát Triển HardeepTheDev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/harry-private/my_dictionary
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "My Dictionary",
    "description": "Get definition or translation of the selected word(s) in popup (multiple choices)",
    "version": "1.0.01",
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "background": {
        "scripts": [
            "data\/internal_libs\/dictionaries_data.js",
            "data\/background\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "data\/icons\/icon16.png",
        "default_title": "My Dictionary",
        "default_popup": "data\/options\/dictionary_for_menu_bar\/dictionary_for_menu_bar.html"
    },
    "options_ui": {
        "page": "data\/options\/options.html",
        "open_in_tab": true
    },
    "icons": {
        "16": "data\/icons\/icon16.png",
        "48": "data\/icons\/icon48.png",
        "128": "data\/icons\/icon128.png"
    },
    "web_accessible_resources": [
        "data\/icons\/icon_original.png",
        "data\/iframe\/iframe.html",
        "data\/icons\/loading.gif"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "data\/content_scripts\/index.js"
            ],
            "css": [
                "data\/content_scripts\/index.css"
            ],
            "all_frames": true
        }
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+M"
            },
            "description": "Activate the extension"
        }
    }
}