Regex

Regex: The ultimate Regex search ⭐️ Simply use Regex on any page with familiar Ctrl+F visuals. ✓ Ctrl+Shift+F search field ✓…

Cos'è Regex?

Regex è un'estensione di Chrome sviluppata da Code Charity, e la sua funzione principale è "Regex: The ultimate Regex search ⭐️ Simply use Regex on any page with familiar Ctrl+F visuals. ✓ Ctrl+Shift+F search field ✓…".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Regex

Scarica i file di estensione Regex in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Regex: The ultimate Regex search ⭐️
Simply use Regex on any page with familiar Ctrl+F visuals. 

✓ Ctrl+Shift+F search field   
✓  Regex query searching
✓ Number of results per tab   ✓ Scroll screen to previous/next result   ✓ Highlighting search results

 ✓ Permanently marking up or replacing anything.

 Open Source!    https://github.com/code-for-charity (where we work hard daily.) 
 Please check out the source code & contribute 🎈

The Extension runs offline                    

Informazioni di Base sull'Estensione

Nome Regex Regex
ID pmihaiejckejbpjdnildimfkpcpnohlo
URL Ufficiale https://chromewebstore.google.com/detail/regex/pmihaiejckejbpjdnildimfkpcpnohlo
Descrizione Regex: The ultimate Regex search ⭐️ Simply use Regex on any page with familiar Ctrl+F visuals. ✓ Ctrl+Shift+F search field ✓…
Dimensione del File 366 KB
Conteggio Installazioni 421
Versione Corrente 2.0.0
Ultimo Aggiornamento 2023-03-27
Data di Pubblicazione 2020-05-07
Valutazione 4.50/5 Totale 14 Valutazioni
Sviluppatore Code Charity
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy http://improvedtube.com/privacy
Lingue Supportate en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Regex",
    "version": "2.0.0",
    "default_locale": "en",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "content-script.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F"
            }
        }
    },
    "offline_enabled": true
}