Dictionary Tool

This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension

ما هو Dictionary Tool؟

Dictionary Tool هو إضافة Chrome تم تطويرها بواسطة https://stlwebsitedevelopment.com، والميزة الرئيسية لها هي "This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension".

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

screenshot

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

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

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

                        A chrome extension that allows you to highlight a word on the page, click on my extension and get a definition of the word you have highlighted. The extension is connected to a dictionary database and uses a special algorithm to retrieve the highlighted text, query the database and retrieve the definition for you in an elegant, simple, and well designed chrome extension.                    

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

الاسم Dictionary Tool Dictionary Tool
ID edifcpjfgilelnbmcihdcfhggmjodfmh
عنوان URL الرسمي https://chromewebstore.google.com/detail/dictionary-tool/edifcpjfgilelnbmcihdcfhggmjodfmh
الوصف This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension
حجم الملف 181 KB
عدد التثبيتات 577
النسخة الحالية 2.1
آخر تحديث 2023-01-26
تاريخ النشر 2017-07-31
تقييم 2.00/5 مجموع تقييمات 4
المطور https://stlwebsitedevelopment.com
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Dictionary Tool",
    "description": "This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension",
    "version": "2.1",
    "author": "Leon Krugliakov",
    "icons": {
        "16": "icons\/icon.png",
        "32": "icons\/icon.png",
        "48": "icons\/icon.png",
        "128": "icons\/icon.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "scripting",
        "activeTab"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "scripts\/main.js",
                "scripts\/jquery.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ]
}