Regex Checker

This extension uses regular expressions to find important elements on webpages.

Wat is Regex Checker?

Regex Checker is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "This extension uses regular expressions to find important elements on webpages.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Regex Checker

Download Regex Checker-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 Checker uses regular expressions to find important elements on webpages.
The extension finds important text on webpages and highlights.

There are 2 modes of operation: manual and automatic.

Automatic:
- In automatic mode, a list of default regular expressions are used to parse the page and highlight important elements.
- The user can add or remove expressions from the current search criteria.

Manual:
- In manual mode, the user enters a custom regular expression along with flags.                    

Basisinformatie over de Extensie

Naam Regex Checker Regex Checker
ID gkcnkoebkkppbapcjifgokmpcflfhbde
Officiële URL https://chromewebstore.google.com/detail/regex-checker/gkcnkoebkkppbapcjifgokmpcflfhbde
Beschrijving This extension uses regular expressions to find important elements on webpages.
Bestandsgrootte 88.1 KB
Aantal Installaties 89
Huidige Versie 0.0.0.1
Laatst Bijgewerkt 2017-12-09
Publicatiedatum 2017-12-09
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Unknown
Betalingswijze free
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Regex Checker",
    "description": "This extension uses regular expressions to find important elements on webpages.",
    "version": "0.0.0.1",
    "browser_action": {
        "default_icon": "img\/iconstar.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "lib\/jquery-3.2.1.js",
                "js\/searchFunction.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab"
    ]
}