Finding patterns

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

Co je Finding patterns?

Finding patterns je rozšíření Chrome vyvinuté carlosV2, a jeho hlavní funkcí je „Look for patterns inside HTML, JS, CSS and AJAX code“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Finding patterns

Stáhněte si soubory rozšíření Finding patterns ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Finding patterns Finding patterns
ID fikfnienebmgobclladdionkabigeico
Oficiální URL https://chromewebstore.google.com/detail/finding-patterns/fikfnienebmgobclladdionkabigeico
Popis Look for patterns inside HTML, JS, CSS and AJAX code
Velikost souboru 171 KB
Počet instalací 637
Aktuální Verze 1.1
Poslední Aktualizace 2013-02-12
Datum Vydání 2013-02-12
Hodnocení 3.20/5 Celkem 5 Hodnocení
Vývojář carlosV2
Typ Platby free
Podporované Jazyky 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",
        "*:\/\/*\/*"
    ]
}