Finding patterns

Look for patterns inside HTML, JS, CSS and AJAX code

Finding patternsとは何ですか?

Finding patternsはcarlosV2によって開発されたChromeの拡張機能で、その主な機能は「Look for patterns inside HTML, JS, CSS and AJAX code」です。

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

拡張機能の使用方法

                        This extension aims to help you to find bugs on your webpage. Also, it can show you any text you need to know.

It is useful when your webpage replaces tags such #LIST_OF_PRODUCTS#. There times that tags are hidden (for example in a link title, JS, CSS or AJAX code).

With Finding patterns you will find quickly all of them.

You can use your own regular expressions so you can find any pattern you need.                    

拡張機能の基本情報

名前 Finding patterns Finding patterns
ID fikfnienebmgobclladdionkabigeico
公式URL https://chromewebstore.google.com/detail/finding-patterns/fikfnienebmgobclladdionkabigeico
説明 Look for patterns inside HTML, JS, CSS and AJAX code
ファイルサイズ 171 KB
インストール数 637
現在のバージョン 1.1
最終更新日 2013-02-12
公開日 2013-02-12
評価 3.20/5 合計 5 レビュー
開発者 carlosV2
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Finding patterns",
    "version": "1.1",
    "manifest_version": 2,
    "description": "Look for patterns inside HTML, JS, CSS and AJAX code",
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "42": "icons\/icon42.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "constants.js",
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Checking...",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "ajaxinspector.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "*:\/\/*\/*"
    ]
}