Regex

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

Co to jest Regex?

Regex to rozszerzenie Chrome opracowane przez Code Charity, a jego główną funkcją jest „Regex: The ultimate Regex search ⭐️ Simply use Regex on any page with familiar Ctrl+F visuals. ✓ Ctrl+Shift+F search field ✓…”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Regex

Pobierz pliki rozszerzeń Regex w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Regex Regex
ID pmihaiejckejbpjdnildimfkpcpnohlo
Oficjalny URL https://chromewebstore.google.com/detail/regex/pmihaiejckejbpjdnildimfkpcpnohlo
Opis Regex: The ultimate Regex search ⭐️ Simply use Regex on any page with familiar Ctrl+F visuals. ✓ Ctrl+Shift+F search field ✓…
Rozmiar pliku 366 KB
Liczba instalacji 421
Aktualna Wersja 2.0.0
Ostatnia Aktualizacja 2023-03-27
Data Publikacji 2020-05-07
Ocena 4.50/5 Łącznie 14 Oceny
Deweloper Code Charity
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności http://improvedtube.com/privacy
Obsługiwane Języki 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
}