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開發的Chrome擴展程式,該擴展的主要功能是“Autoscroll to relevant sections of a page and have relevant keywords/ phrases highlighted”。

擴展截圖

screenshot
screenshot

下載Foragear- Quick Search Tool擴展crx文件

下載Foragear- Quick Search Tool擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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",
        ""
    ]
}