Chrome Regex Search

An extension for Regex Search in lieu of Chrome's CTRL+F

Τι είναι το Chrome Regex Search;

Το Chrome Regex Search είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον rshen, και η κύρια λειτουργία του είναι "An extension for Regex Search in lieu of Chrome's CTRL+F".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Chrome Regex Search

Λήψη αρχείων επέκτασης Chrome Regex Search σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Highlight regex matches on the web page dynamically as you type.

Cycle through matches with ENTER and SHIFT+ENTER or by clicking the arrows with your mouse.

Customize highlighting and text color through the extension options.

You will need to refresh any tabs you already have opened to load the content script.

10/27/2015: Added case insensitive search option in options page

7/13/2016: Added "file://*/*" extension to manifest

7/30/2016: Updated package with pull request https://github.com/rogershen/chrome-regex-search/commit/c5ab1bbc33a1ec8ddd254b640b8786cc621e6644

9/2/2016: Updated package with pull request https://github.com/rogershen/chrome-regex-search/pull/6
This update adds search history to the popup, which is shown and hidden with the rightmost button

9/23/2016: Changed case insensitive search option to a toggle on popup

1/24/2019: Updated package with two pull requests to enable copy command and auto-focus on parent element.

This extension is open source: https://github.com/rogershen/chrome-regex-search

If you have any problems please report them to https://github.com/rogershen/chrome-regex-search/issues

Keyboard Shortcuts:
ENTER: select next regex match
SHIFT+ENTER: select previous regex match

To setup a Keyboard Shortcut to open the Popup:
In your browser, go to chrome://extensions/
Find 'Chrome Regex Search' and click the box
Type your custom command (ie CTRL+SHIFT+F) 
Now whenever, you want to open the popup simply enter your custom command.

Extension Options can be found by right clicking the icon and selecting 'Options' or by going to chrome://extensions/ and clicking 'Options' in the row for 'Chrome Regex Search'                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Chrome Regex Search Chrome Regex Search
ID bpelaihoicobbkgmhcbikncnpacdbknn
Επίσημο URL https://chromewebstore.google.com/detail/chrome-regex-search/bpelaihoicobbkgmhcbikncnpacdbknn
Περιγραφή An extension for Regex Search in lieu of Chrome's CTRL+F
Μέγεθος Αρχείου 34.43 KB
Αριθμός Εγκαταστάσεων 50,000
Τρέχουσα Έκδοση 1.0.8
Τελευταία Ενημέρωση 2019-01-24
Ημερομηνία Δημοσίευσης 2019-01-23
Αξιολόγηση 3.89/5 Συνολικά 176 Αξιολογήσεις
Προγραμματιστής rshen
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/rogershen/chrome-regex-search
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/rogershen/chrome-regex-search
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome Regex Search",
    "description": "An extension for Regex Search in lieu of Chrome's CTRL+F",
    "version": "1.0.8",
    "icons": {
        "16": "icons\/icons_16.png",
        "24": "icons\/icons_24.png",
        "32": "icons\/icons_32.png",
        "48": "icons\/icons_48.png",
        "64": "icons\/icons_64.png",
        "72": "icons\/icons_72.png",
        "96": "icons\/icons_96.png",
        "128": "icons\/icons_128.png",
        "256": "icons\/icons_256.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/icons_16.png",
            "24": "icons\/icons_24.png",
            "32": "icons\/icons_32.png",
            "48": "icons\/icons_48.png",
            "64": "icons\/icons_64.png",
            "72": "icons\/icons_72.png",
            "96": "icons\/icons_96.png",
            "128": "icons\/icons_128.png",
            "256": "icons\/icons_256.png"
        },
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+F",
                "mac": "Command+Shift+F",
                "chromeos": "Ctrl+Shift+F",
                "linux": "Ctrl+Shift+F"
            }
        }
    },
    "options_page": "options.html"
}