SearchBarFindInPage

Find words in page

什麼是SearchBarFindInPage?

SearchBarFindInPage是由https://red-treasure.com開發的Chrome擴展程式,該擴展的主要功能是“Find words in page”。

擴展截圖

screenshot

下載SearchBarFindInPage擴展crx文件

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

擴展使用說明

                        Search bar to find your searched words in the page you are seeing.

Step1. Search keywords with google from the chrome's address bar or google's web site.
Step2. Move to the site you would like to see.
Step3. Set the mouse pointer under the address bar, and "Search bar" will appear.
Step4. Click the keyword on "Search bar" which you would like to search in the current site.

Most of the source code of this originates in "MigemoFindInPage".
https://chrome.google.com/extensions/detail/fojbanjemmcmjomadodejdophegjdpkc

Thanks a lot for edvakf.

searchbar, find in page, search bar                    

擴展基本資訊

名稱 SearchBarFindInPage SearchBarFindInPage
ID aefobaddfpadfnimjhejodmedmbogkkp
官方網址 https://chromewebstore.google.com/detail/searchbarfindinpage/aefobaddfpadfnimjhejodmedmbogkkp
簡介 Find words in page
檔案大小 27.48 KB
安裝次數 17
目前版本 0.4.1
更新時間 2020-01-30
上架時間 2020-01-30
評分 3.00/5 共 4 次評分
開發者 https://red-treasure.com
付費類型 free
擴展官網 http://red-treasure.com/report/?p=577
支援的語言 en
manifest.json
{
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "js": [
                "google_query.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": false,
            "css": [
                "searchbar.css"
            ],
            "js": [
                "searchbar.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "description": "Find words in page",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC3Nz3foAueZU0Yw3FD0imJDXMvILSR8lEXXXZgcJJzztfzfUIuF1CBD0AFXjrtCr085r5x4hwTfyZn3aSWE0SJ1mh7onyUehpDEzDZNN9IWT1aydTZISS8btVLqSfYjiL8HB99H2vavhMp4Ve3cwh8YvfoV78PnrdPQSTSvtP0FwIDAQAB",
    "manifest_version": 2,
    "name": "SearchBarFindInPage",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.4.1"
}