Smart Search

Better than Ctrl+F. It shows also similar matches. Shortkey: Ctrl+Shift+F

Smart Search란 무엇입니까?

Smart Search은(는) Mateusz Wojciechowski에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Better than Ctrl+F. It shows also similar matches. Shortkey: Ctrl+Shift+F"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        IMPORTANT:
To ensure the compatibility of this extension, it NEEDS TO BE TESTED ON ANOTHER WEBSITE. This is necessary because certain sites (like this) and their security measures may prevent the extension from accessing and reading their content.

The extension serves as a replacement for the built-in Ctrl+F search functionality, offering the additional capability to find similar matches, starting with the closest matches.

With this extension, misspellings are no longer an issue. It can handle slight variations and still locate the intended search pattern. Moreover, there are no limitations on the length of the search pattern.                    

확장 프로그램 기본 정보

이름 Smart Search Smart Search
ID balbfidapoainadcdfljopngheecfjmg
공식 URL https://chromewebstore.google.com/detail/smart-search/balbfidapoainadcdfljopngheecfjmg
설명 Better than Ctrl+F. It shows also similar matches. Shortkey: Ctrl+Shift+F
파일 크기 1014 KB
설치 횟수 29
현재 버전 0.2
최근 업데이트 2023-06-28
출시 날짜 2022-05-12
평점 5.00/5 총 1 개의 평점
개발자 Mateusz Wojciechowski
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Smart Search",
    "description": "Better than Ctrl+F. It shows also similar matches. Shortkey: Ctrl+Shift+F",
    "version": "0.2",
    "manifest_version": 3,
    "icons": {
        "16": "graphic\/logo16.png",
        "48": "graphic\/logo48.png",
        "128": "graphic\/logo128.png"
    },
    "cross_origin_embedder_policy": {
        "value": "require-corp"
    },
    "cross_origin_opener_policy": {
        "value": "same-origin"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F"
            }
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/jquery-3.6.0\/jquery-3.6.0.min.js",
                "lib\/mark.js\/mark.es6.min.js",
                "js\/content.js"
            ],
            "css": [
                "css\/mark.css"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "content_security_policy": {
        "sandbox": "sandbox allow-scripts; script-src 'unsafe-eval'; worker-src blob:"
    },
    "sandbox": {
        "pages": [
            "searchSandbox\/searchEngineSandbox.html"
        ]
    }
}