Custom Dictionary

Store words and their definitions, and highlight them on websites

Custom Dictionary là gì?

Custom Dictionary là một tiện ích mở rộng Chrome được phát triển bởi Riki, và tính năng chính của nó là "Store words and their definitions, and highlight them on websites".

Ả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 Custom Dictionary

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

                        This highly performant chrome extension allows you to keep track of a custom dictionary of words. Words will be highlighted on web pages, and their definitions will appear as tooltips when hovered over.                    

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

Tên Custom Dictionary Custom Dictionary
ID gpenoconcglejhmajbjgajimkdpmcogg
URL Chính Thức https://chromewebstore.google.com/detail/custom-dictionary/gpenoconcglejhmajbjgajimkdpmcogg
Mô tả Store words and their definitions, and highlight them on websites
Kích Thước Tệp 44.67 KB
Số Lần Cài Đặt 55
Phiên Bản Hiện Tại 1.2.2
Cập Nhật Lần Cuối 2022-05-12
Ngày Phát Hành 2022-04-25
Nhà Phát Triển Riki
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/rikilele/custom-dict-chrome
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Custom Dictionary",
    "version": "1.2.2",
    "action": {
        "default_icon": {
            "16": "icons\/16.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        },
        "default_title": "Custom Dictionary",
        "default_popup": "popup\/popup.html"
    },
    "description": "Store words and their definitions, and highlight them on websites",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "author": "Riki Singh Khorana",
    "background": {
        "service_worker": "background\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript\/contentScript.js"
            ],
            "css": [
                "contentScript\/contentScript.css"
            ],
            "match_about_blank": true
        }
    ],
    "offline_enabled": true,
    "options_page": "settings\/settings.html",
    "permissions": [
        "storage",
        "contextMenus",
        "tabs"
    ],
    "short_name": "Custom Dict"
}