Smart Search

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

Smart Search là gì?

Smart Search là một tiện ích mở rộng Chrome được phát triển bởi Mateusz Wojciechowski, và tính năng chính của nó là "Better than Ctrl+F. It shows also similar matches. Shortkey: Ctrl+Shift+F".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Smart Search 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

                        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.                    

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

Tên Smart Search Smart Search
ID balbfidapoainadcdfljopngheecfjmg
URL Chính Thức https://chromewebstore.google.com/detail/smart-search/balbfidapoainadcdfljopngheecfjmg
Mô tả Better than Ctrl+F. It shows also similar matches. Shortkey: Ctrl+Shift+F
Kích Thước Tệp 1014 KB
Số Lần Cài Đặt 29
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2023-06-28
Ngày Phát Hành 2022-05-12
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Mateusz Wojciechowski
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}