SearchBarFindInPage

Find words in page

SearchBarFindInPage란 무엇입니까?

SearchBarFindInPage은(는) https://red-treasure.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Find words in page"입니다.

확장 프로그램 스크린샷

screenshot

SearchBarFindInPage 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
}