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 HardeepTheDev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Lookup selected texts in the popup on your preferred search engine, and open links in the popup"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Lookup In Popup एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ URL 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"
        }
    }
}