Lookup In Popup

Lookup selected texts in the popup on your preferred search engine, and open links in the popup

ما هو Lookup In Popup؟

Lookup In Popup هو إضافة Chrome تم تطويرها بواسطة HardeepTheDev، والميزة الرئيسية لها هي "Lookup selected texts in the popup on your preferred search engine, and open links in the popup".

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

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Lookup In Popup

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

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

                        - Lookup text selection in the pop-up in your preferred search engine (you can add more search engines).
   - Open links in pop-up from the context menu.


- Sometimes, you want to look up the words' meaning that you just came across on a web-page, you can look up the words in the pop-up.

   - Sometimes, you just want to quickly go through the content of the link that you just came across on a web-page, you can open that in the pop-up and go through the content quickly.
      - For example:
            - You are studying something on a web-page and you came across a link, but you don't want to leave the page or open a new tab to see the content, you can open that link in the pop-up.
	     - You can open YouTube videos in the pop-up.
	     - You can quickly go through someone's profile on social media.
	      - Open Reddit post in the pop-up                    

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

الاسم Lookup In Popup Lookup In Popup
ID akaefbhdlppmfdecoakjogglbjgacdhm
عنوان URL الرسمي https://chromewebstore.google.com/detail/lookup-in-popup/akaefbhdlppmfdecoakjogglbjgacdhm
الوصف Lookup selected texts in the popup on your preferred search engine, and open links in the popup
حجم الملف 118 KB
عدد التثبيتات 512
النسخة الحالية 0.0.2
آخر تحديث 2021-05-19
تاريخ النشر 2021-02-02
تقييم 4.79/5 مجموع تقييمات 19
المطور HardeepTheDev
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/harry-private/lookup-in-popup
عنوان صفحة المساعدة https://github.com/harry-private/lookup-in-popup/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Lookup In Popup",
    "description": "Lookup selected texts in the popup on your preferred search engine, and open links in the popup",
    "version": "0.0.2",
    "permissions": [
        "storage",
        "",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "data\/internal_libs\/lip_utility.js",
            "data\/internal_libs\/lip_pre_installed_search_engines_data.js",
            "data\/background\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "data\/icons\/icon16.png",
        "default_title": "Lookup In Popup",
        "default_popup": "data\/options\/lip_from_toolbar\/lip_from_toolbar.html"
    },
    "options_ui": {
        "page": "data\/options\/options.html",
        "open_in_tab": true
    },
    "icons": {
        "16": "data\/icons\/icon16.png",
        "24": "data\/icons\/icon24.png",
        "32": "data\/icons\/icon32.png",
        "48": "data\/icons\/icon48.png",
        "64": "data\/icons\/icon64.png",
        "128": "data\/icons\/icon128.png",
        "256": "data\/icons\/icon256.png",
        "512": "data\/icons\/icon512.png"
    },
    "web_accessible_resources": [],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "data\/internal_libs\/lip_utility.js",
                "data\/inject\/lip.js"
            ],
            "css": [
                "data\/inject\/lip.css"
            ],
            "all_frames": true
        },
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "data\/inject\/lip_popup_window.js"
            ],
            "css": [
                "data\/inject\/lip_popup_window.css"
            ],
            "all_frames": false
        }
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+L"
            },
            "description": "Activate the extension"
        }
    }
}