SearchBarFindInPage

Find words in page

SearchBarFindInPage là gì?

SearchBarFindInPage là một tiện ích mở rộng Chrome được phát triển bởi https://red-treasure.com, và tính năng chính của nó là "Find words in page".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng SearchBarFindInPage

Tải xuống các tệp mở rộng SearchBarFindInPage dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên SearchBarFindInPage SearchBarFindInPage
ID aefobaddfpadfnimjhejodmedmbogkkp
URL Chính Thức https://chromewebstore.google.com/detail/searchbarfindinpage/aefobaddfpadfnimjhejodmedmbogkkp
Mô tả Find words in page
Kích Thước Tệp 27.48 KB
Số Lần Cài Đặt 17
Phiên Bản Hiện Tại 0.4.1
Cập Nhật Lần Cuối 2020-01-30
Ngày Phát Hành 2020-01-30
Đánh Giá 3.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://red-treasure.com
Loại Thanh Toán free
Trang Web Mở Rộng http://red-treasure.com/report/?p=577
Ngôn Ngữ Được Hỗ Trợ 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"
}