Custom Dictionary

Store words and their definitions, and highlight them on websites

ما هو Custom Dictionary؟

Custom Dictionary هو إضافة Chrome تم تطويرها بواسطة Riki، والميزة الرئيسية لها هي "Store words and their definitions, and highlight them on websites".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Custom Dictionary

قم بتنزيل ملفات الامتداد Custom Dictionary بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Custom Dictionary Custom Dictionary
ID gpenoconcglejhmajbjgajimkdpmcogg
عنوان URL الرسمي https://chromewebstore.google.com/detail/custom-dictionary/gpenoconcglejhmajbjgajimkdpmcogg
الوصف Store words and their definitions, and highlight them on websites
حجم الملف 44.67 KB
عدد التثبيتات 55
النسخة الحالية 1.2.2
آخر تحديث 2022-05-12
تاريخ النشر 2022-04-25
المطور Riki
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/rikilele/custom-dict-chrome
اللغات المدعومة 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"
}