Regex Checker

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

Regex Checkerとは何ですか?

Regex CheckerはUnknownによって開発されたChromeの拡張機能で、その主な機能は「This extension uses regular expressions to find important elements on webpages.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Regex Checker拡張機能のCRXファイルをダウンロード

Regex Checker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Regex Checker Regex Checker
ID gkcnkoebkkppbapcjifgokmpcflfhbde
公式URL https://chromewebstore.google.com/detail/regex-checker/gkcnkoebkkppbapcjifgokmpcflfhbde
説明 This extension uses regular expressions to find important elements on webpages.
ファイルサイズ 88.1 KB
インストール数 89
現在のバージョン 0.0.0.1
最終更新日 2017-12-09
公開日 2017-12-09
評価 5.00/5 合計 1 レビュー
開発者 Unknown
支払い方法 free
対応言語 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"
    ]
}