Search Center

Helps you search and highlight text on a web page. Supports keyboard shortcuts.

Search Center là gì?

Search Center là một tiện ích mở rộng Chrome được phát triển bởi https://getsearchcenter.com, và tính năng chính của nó là "Helps you search and highlight text on a web page. Supports keyboard shortcuts.".

Ả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 Search Center

Tải xuống các tệp mở rộng Search Center 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 Center extension allows you to quickly search or highlight text on a web page. For more convenience, you can use hot keys.
To open the search window, just click on the extension icon in the upper-right corner of the browser, or use the keyboard shortcut: Alt + Shift + F.

Privacy Policy: https://getsearchcenter.com/privacy.html
Terms of Use: https://getsearchcenter.com/terms.html

By click on «Add to Chrome» button in the top right hand corner and installing Search Center extension, you are agreeing to install this extension, you are agreeing to our Privacy Policy, and you are agreeing to our Terms of Use.                    

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

Tên Search Center Search Center
ID bibjjhmgoinhccohlihdcidipacbkolh
URL Chính Thức https://chromewebstore.google.com/detail/search-center/bibjjhmgoinhccohlihdcidipacbkolh
Mô tả Helps you search and highlight text on a web page. Supports keyboard shortcuts.
Kích Thước Tệp 46.01 KB
Số Lần Cài Đặt 24
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2021-09-26
Ngày Phát Hành 2021-06-02
Nhà Phát Triển https://getsearchcenter.com
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://getsearchcenter.com/privacy.html
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "manifest_version": 2,
    "name": "Search Center",
    "version": "1.0.3",
    "description": "Helps you search and highlight text on a web page. Supports keyboard shortcuts.",
    "icons": {
        "128": "128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "toolbar.html"
    ],
    "browser_action": [],
    "commands": {
        "toggle-toolbar": {
            "description": "Show\/hide toolbar",
            "suggested_key": {
                "default": "Alt+Shift+F"
            }
        },
        "highlight-text": {
            "description": "Highlight text",
            "suggested_key": {
                "default": "Alt+H"
            }
        },
        "find-next": {
            "description": "Find next",
            "suggested_key": {
                "default": "Alt+N"
            }
        },
        "search-google": {
            "description": "Search in Google",
            "suggested_key": {
                "default": "Alt+G"
            }
        }
    },
    "permissions": [
        "activeTab"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx"
}