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…

Regex Search क्या है?

Regex Search gsingh93 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This is a chrome extension that allows you to search the text of a page using regular expressions. Please note that because of the…"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Regex Search एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Regex Search Regex Search
ID bcdabfmndggphffkchfdcekcokmbnkjl
आधिकारिक URL https://chromewebstore.google.com/detail/regex-search/bcdabfmndggphffkchfdcekcokmbnkjl
विवरण This is a chrome extension that allows you to search the text of a page using regular expressions. Please note that because of the…
फ़ाइल का आकार 53.24 KB
स्थापना संख्या 6,475
वर्तमान संस्करण 1.8
अंतिम अपडेट 2019-03-04
प्रकाशन तिथि 2019-03-03
रेटिंग 3.06/5 कुल 178 रेटिंग्स
डेवलपर gsingh93
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/gsingh93/regex-search
सहायता पृष्ठ URL https://github.com/gsingh93/regex-search/issues
समर्थित भाषाएँ 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"
    }
}