Regex

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

Wat is Regex?

Regex is een Chrome-extensie ontwikkeld door Code Charity, en de belangrijkste functie is "Regex: The ultimate Regex search ⭐️ Simply use Regex on any page with familiar Ctrl+F visuals. ✓ Ctrl+Shift+F search field ✓…".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Regex

Download Regex-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Regex Regex
ID pmihaiejckejbpjdnildimfkpcpnohlo
Officiële URL https://chromewebstore.google.com/detail/regex/pmihaiejckejbpjdnildimfkpcpnohlo
Beschrijving Regex: The ultimate Regex search ⭐️ Simply use Regex on any page with familiar Ctrl+F visuals. ✓ Ctrl+Shift+F search field ✓…
Bestandsgrootte 366 KB
Aantal Installaties 421
Huidige Versie 2.0.0
Laatst Bijgewerkt 2023-03-27
Publicatiedatum 2020-05-07
Beoordeling 4.50/5 Totaal 14 Beoordelingen
Ontwikkelaar Code Charity
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina http://improvedtube.com/privacy
Ondersteunde Talen 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
}