Wikipedia Highlight Lookup Plugin

Look up highlighted text on wikipedia. Just highlight the word or phrase you want to look up and press Ctrl+I.

ما هو Wikipedia Highlight Lookup Plugin؟

Wikipedia Highlight Lookup Plugin هو إضافة Chrome تم تطويرها بواسطة Tim Hansen، والميزة الرئيسية لها هي "Look up highlighted text on wikipedia. Just highlight the word or phrase you want to look up and press Ctrl+I.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Wikipedia Highlight Lookup Plugin

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

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

                        A simple open-source chrome extension that allows you to look up terms on wikipedia by highlighting text on any page and then hitting Ctrl+I (Command+I on apple).

Icons made by SimpleIcon from www.flaticon.com is licensed by CC 3.0 BY.                    

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

الاسم Wikipedia Highlight Lookup Plugin Wikipedia Highlight Lookup Plugin
ID lccilnojalgdoafhhjhiabfcmpahahec
عنوان URL الرسمي https://chromewebstore.google.com/detail/wikipedia-highlight-looku/lccilnojalgdoafhhjhiabfcmpahahec
الوصف Look up highlighted text on wikipedia. Just highlight the word or phrase you want to look up and press Ctrl+I.
حجم الملف 286 KB
عدد التثبيتات 58
النسخة الحالية 0.0.3
آخر تحديث 2017-01-17
تاريخ النشر 2017-01-16
المطور Tim Hansen
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wikipedia Highlight Lookup Plugin",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "Look up highlighted text on wikipedia.  Just highlight the word or phrase you want to look up and press Ctrl+I.",
    "icons": {
        "16": "icon\/16.png",
        "48": "icon\/48.png",
        "128": "icon\/128.png"
    },
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/bg\/content.js"
            ]
        }
    ],
    "commands": {
        "wiki-lookup": {
            "suggested_key": {
                "default": "Ctrl+I",
                "mac": "Command+I"
            },
            "description": "Toggle wikipedia lookup"
        }
    },
    "permissions": [
        "tabs",
        "activeTab",
        "notifications",
        "http:\/\/*\/*",
        "https:\/\/upload.wikimedia.org\/*"
    ]
}