RegExp Search and Highlight

Find text content with regular expression and highlight it, or collapse unnecessary blocks.

Was ist RegExp Search and Highlight?

RegExp Search and Highlight ist eine Chrome-Erweiterung, die von Alexandr Pudich entwickelt wurde, und ihr Hauptmerkmal ist "Find text content with regular expression and highlight it, or collapse unnecessary blocks.".

Erweiterungsscreenshots

screenshot
screenshot

RegExp Search and Highlight-Erweiterungs-CRX-Datei herunterladen

Laden Sie RegExp Search and Highlight-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Find text content with regular expression and highlight it, or collapse unnecessary blocks. It was writed for facilitating some text log analyze.
You can to add "url matches" for permanent enabling on some domains / pages.

### Features:
* local storage of preferences (currently there is no need for synchronized storage)
* import / export profiles
* enable / disable on tab
* customizable work mode (e.g. you can add regexp matching to needly URL's, where extension will active always)
* color changing ability for every regexp and collapse block
* reading sequential text elements, to which chrome devide the content due to constraints (~ 65535 length). Bypassing the built-in elements is not implemented for a variety of reasons and also as useless
* notifying activated tabs when profile is modified

---------------------

### TODO
* store page in cache for ability to rerun functions (will fully work by "refresh" button in popup) without page reloading
* add locales
* exclude other extensions influence


JS files in this packet was minified. But source code is available on github, you can fork it, discuss and offer improvements!
[ https://github.com/linkuha/ext-resh ]                    

Grundlegende Informationen zur Erweiterung

Name RegExp Search and Highlight RegExp Search and Highlight
ID hfoealcpjklgmfbdkoeckhegfnacembo
Offizielle URL https://chromewebstore.google.com/detail/regexp-search-and-highlig/hfoealcpjklgmfbdkoeckhegfnacembo
Beschreibung Find text content with regular expression and highlight it, or collapse unnecessary blocks.
Dateigröße 23.99 KB
Installationsanzahl 204
Aktuelle Version 0.1.4
Letztes Update 2018-04-16
Veröffentlichungsdatum 2018-04-16
Bewertung 3.44/5 Insgesamt 9 Bewertungen
Entwickler Alexandr Pudich
Zahlungsart free
Unterstützte Sprachen en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "RegExp Search and Highlight",
    "short_name": "RegExp Search and Highlight",
    "description": "Find text content with regular expression and highlight it, or collapse unnecessary blocks.",
    "version": "0.1.4",
    "default_locale": "en",
    "icons": {
        "128": "img\/icon128.png",
        "48": "img\/icon48.png"
    },
    "offline_enabled": true,
    "web_accessible_resources": [
        "css\/content.css"
    ],
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_title": "RegExp Search and Highlight",
        "default_icon": "img\/icon48.png",
        "default_popup": "popup.html"
    }
}