Regex Search

This is a chrome extension that allows you to search the text of a page using regular expressions. Please note that because of the…

Qu'est-ce que Regex Search ?

Regex Search est une extension Chrome développée par gsingh93, et sa fonction principale est "This is a chrome extension that allows you to search the text of a page using regular expressions. Please note that because of the…".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Regex Search

Téléchargez les fichiers d'extension Regex Search au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        This is a chrome extension that allows you to search the text of a page using regular expressions. Please note that because of the way web pages are written, it is very difficult to make this extension work on 100% of pages. If you have any problems, please report them on the Github issues page: https://github.com/gsingh93/regex-search/issues.


Please DO NOT try to test this extension on any URL beginning with chrome.google.com/webstore. It will NOT work. See this question for details: http://stackoverflow.com/questions/11613371/chrome-extension-content-script-on-https-chrome-google-com-webstore                    

Informations de Base sur l'Extension

Nom Regex Search Regex Search
ID bcdabfmndggphffkchfdcekcokmbnkjl
URL Officiel https://chromewebstore.google.com/detail/regex-search/bcdabfmndggphffkchfdcekcokmbnkjl
Description This is a chrome extension that allows you to search the text of a page using regular expressions. Please note that because of the…
Taille du Fichier 53.24 KB
Nombre d'Installations 6,475
Version Actuelle 1.8
Dernière Mise à Jour 2019-03-04
Date de Publication 2019-03-03
Évaluation 3.06/5 Total 178 Évaluations
Développeur gsingh93
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/gsingh93/regex-search
URL de la Page d'Aide https://github.com/gsingh93/regex-search/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Regex Search",
    "version": "1.8",
    "permissions": [
        "tabs",
        "http:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "css": [
                "content\/content.css"
            ],
            "js": [
                "content\/jquery.min.js",
                "content\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background\/background.js"
        ]
    },
    "options_page": "options\/options.html",
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_popup": "popup\/popup.html"
    },
    "commands": {
        "next": {
            "suggested_key": {
                "default": "Alt+Shift+N"
            },
            "description": "Go to the next search result"
        },
        "prev": {
            "suggested_key": {
                "default": "Alt+Shift+P"
            },
            "description": "Go to the previous search result"
        },
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+F"
            }
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}