Cambridge Dictionary

Look up selected text in 'Cambridge Dictionary' page.

ما هو Cambridge Dictionary؟

Cambridge Dictionary هو إضافة Chrome تم تطويرها بواسطة Tan Kan، والميزة الرئيسية لها هي "Look up selected text in 'Cambridge Dictionary' page.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Look up selected text in https://dictionary.cambridge.org, using predefined dictionary.
While in Cambridge Dictionary page, automatically focus on search box when typing.

When popup tab is closed, previous active tab will be active again.
This is very helpful if you are in middle of handful of tabs.

What's new:
Arrow keys (Up - Down) can be used to select word in suggestion pop-up.                    

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

الاسم Cambridge Dictionary Cambridge Dictionary
ID dbiljoifjihhnghopaokjicepkcdfglo
عنوان URL الرسمي https://chromewebstore.google.com/detail/cambridge-dictionary/dbiljoifjihhnghopaokjicepkcdfglo
الوصف Look up selected text in 'Cambridge Dictionary' page.
حجم الملف 48.39 KB
عدد التثبيتات 4,000
النسخة الحالية 1.3
آخر تحديث 2020-06-11
تاريخ النشر 2020-06-11
تقييم 5.00/5 مجموع تقييمات 9
المطور Tan Kan
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Cambridge Dictionary",
    "version": "1.3",
    "description": "Look up selected text in 'Cambridge Dictionary' page.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/dictionary.cambridge.org\/*"
            ],
            "js": [
                "content_scripts.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "browser_action": {
        "default_icon": "icons\/cambridge-icon-128.png",
        "default_title": "Cambridge Dictionary",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icons\/cambridge-icon-128.png"
    }
}