Foragear- Quick Search Tool

Autoscroll to relevant sections of a page and have relevant keywords/ phrases highlighted

Foragear- Quick Search Tool क्या है?

Foragear- Quick Search Tool Gideon Tay Dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Autoscroll to relevant sections of a page and have relevant keywords/ phrases highlighted"।

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

screenshot
screenshot

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

crx प्रारूप में Foragear- Quick Search Tool एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Enhance the google search experience by highlighting and navigating to key phrases and words. This is especially useful for long webpages and when conducting research on the web.

How it works:
- After each Google search, small clickable icons appear beside each search result. 
- When the icon is clicked, the relevant webpage opens in a new tab. 
- In the webpage, key phrases corresponding to the search description (the grey text under each search result) is highlighted in pink. The page auto scrolls to the first highlighted phrase.
- Other keywords (based on the initial google search query) are highlighted in yellow.
- Remove highlights by clicking on the icon in the chrome extension bar which opens a popup.

Note: Foragear only works with the Google search engine

Happy searching!

*If you enjoy using Foragear and hope to give a tip, feel free to Paypal me at:  paypal.me/paygideon (default currency is SGD, feel free to change. Prefer SGD/USD)

--------------------
v1.0.1 updates:
- fixed bugs that prevented it from working after Google's chrome update
- enhanced the keyword highlighting function for increased accuracy and relevance                    

एक्सटेंशन की मूल जानकारी

नाम Foragear- Quick Search Tool Foragear- Quick Search Tool
ID cldhjjcfiadipgdiiklpdhdkkakacdbm
आधिकारिक URL https://chromewebstore.google.com/detail/foragear-quick-search-too/cldhjjcfiadipgdiiklpdhdkkakacdbm
विवरण Autoscroll to relevant sections of a page and have relevant keywords/ phrases highlighted
फ़ाइल का आकार 19.31 KB
स्थापना संख्या 379
वर्तमान संस्करण 1.0.2
अंतिम अपडेट 2023-05-26
प्रकाशन तिथि 2020-06-03
रेटिंग 5.00/5 कुल 5 रेटिंग्स
डेवलपर Gideon Tay Dev
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Foragear- Quick Search Tool",
    "manifest_version": 2,
    "version": "1.0.2",
    "description": "Autoscroll to relevant sections of a page and have relevant keywords\/ phrases highlighted",
    "icons": {
        "128": "icons\/128.png",
        "48": "icons\/48.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "contentmain.js"
            ],
            "matches": [
                "https:\/\/www.google.com\/search?*",
                "http:\/\/www.google.com\/search?*"
            ]
        }
    ],
    "web_accessible_resources": [
        "icons\/*.png"
    ],
    "page_action": {
        "default_title": "Foragear- Quick Search Tool",
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "activeTab",
        ""
    ]
}