Quick Find for Google Chrome™

Port of Firefox Quick Find features + awesome new ones. Search results in one location. Navigate to links in just a few keystrokes.

Quick Find for Google Chrome™ là gì?

Quick Find for Google Chrome™ là một tiện ích mở rộng Chrome được phát triển bởi Peter Shin, và tính năng chính của nó là "Port of Firefox Quick Find features + awesome new ones. Search results in one location. Navigate to links in just a few keystrokes.".

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

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Quick Find for Google Chrome™

Tải xuống các tệp mở rộng Quick Find for Google Chrome™ 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

                        For a more easily readable description please visit:



https://github.com/peterdotjs/quick-find



****
Change Log: 
0.0.12 - Added ability to change default shortcut keys
0.0.11 - Fixed issue where search is broken in Chrome 40.

Motivation
--------------------
I’ve always wanted the ability to see all the search results in a text search rather than just seeing them highlighted and scattered across the page and out of view. This was the start of the idea and it soon became mashed up with all the great Firefox quick find features that Chrome is missing.

If you like it please rate it and if you have any feature requests, questions or bugs you file it here: 
https://github.com/peterdotjs/quick-find/issues

Demo
------------
https://www.youtube.com/watch?v=x2PEyTyJ6iM

Description
--------------------
Next generation text search. A new text search tool for your Chrome web page. Start a search and simply press enter/return on a highlighted link and you’ll instantly navigate to that page. A mashup of Firefox quick find features (case match, links only search, highlight all, search selected text) as well as awesome new ones (scroll/navigate through all search results with context) - brought to Chrome.


SHORCUT KEYS
---------------------------

Getting started
-----------------------------

/  or  ctrl + shift + f  : forward slash or ctrl+shift+f will open Quick Find menu

'  : single quote key will open Quick Find menu in links mode (only links are searched)

esc  : escape key will close Quick Find menu


Menu navigation
-------------------------------
↑  or  ↓   : navigate results by using up or down arrow keys

enter  or  return : pressing enter on highlighted menu with link will navigate to the link


Search Options
-----------------------------
alt + a  : toggle highlight all results mode

alt + c  : toggle match case mode

alt + l  : toggle links mode


Tips
-------------------
Quick Find search box is pre-populated with any selected/highlighted text prior to opening the search menu.

Toggle occurs only when cursor focus is on the Quick Find menu.


Limitations
-------------------------
Extension only works on sites that allow content scripts. The chrome webstore page itself for example doesn't even allow content scripts to be run.

After you've installed it make sure you are using it on a newly loaded or refreshed page. The script won’t be loaded on existing tabs without a refresh.

Quick find does not search through iframes, script, or code html elements.

When results show up in same html element, will be shown only as one result.

Other website shortcuts or extensions may conflict with these shortcuts. A future enhancement can be to select your own shortcuts to open the menu.

Additional Notes
-------------------------------
Anonymous page view tracking is used to improve the extension and user experience. You can opt out in the options menu.

Chrome is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.                    

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

Tên Quick Find for Google Chrome™ Quick Find for Google Chrome™
ID dejblhmebonldngnmeidliaifgiagcjj
URL Chính Thức https://chromewebstore.google.com/detail/quick-find-for-google-chr/dejblhmebonldngnmeidliaifgiagcjj
Mô tả Port of Firefox Quick Find features + awesome new ones. Search results in one location. Navigate to links in just a few keystrokes.
Kích Thước Tệp 255 KB
Số Lần Cài Đặt 4,786
Phiên Bản Hiện Tại 0.0.13
Cập Nhật Lần Cuối 2021-04-05
Ngày Phát Hành 2021-04-04
Đánh Giá 4.17/5 Tổng số 126 Đánh Giá
Nhà Phát Triển Peter Shin
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/peterdotjs/quick-find
URL Trang Trợ Giúp https://github.com/peterdotjs/quick-find/issues
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quick Find for Google Chrome\u2122",
    "short_name": "Quick Find",
    "version": "0.0.13",
    "manifest_version": 2,
    "description": "Port of Firefox Quick Find features + awesome new ones. Search results in one location. Navigate to links in just a few keystrokes.",
    "icons": {
        "16": "images\/icons\/icon16.png",
        "48": "images\/icons\/icon48.png",
        "128": "images\/icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "js\/lib\/jquery-2.1.1.min.js",
                "js\/utility.js",
                "js\/text-search.js"
            ],
            "css": [
                "css\/styles.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*"
            ]
        }
    ],
    "offline_enabled": true,
    "web_accessible_resources": [
        "fonts\/*",
        "images\/sprites*"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "options_page": "options.html",
    "commands": {
        "quick-find-search-all": {
            "description": "Search all text",
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            }
        },
        "quick-find-search-links": {
            "description": "Search all links"
        }
    }
}