Finding patterns

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

Was ist Finding patterns?

Finding patterns ist eine Chrome-Erweiterung, die von carlosV2 entwickelt wurde, und ihr Hauptmerkmal ist "Look for patterns inside HTML, JS, CSS and AJAX code".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Finding patterns-Erweiterungs-CRX-Datei herunterladen

Laden Sie Finding patterns-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Finding patterns Finding patterns
ID fikfnienebmgobclladdionkabigeico
Offizielle URL https://chromewebstore.google.com/detail/finding-patterns/fikfnienebmgobclladdionkabigeico
Beschreibung Look for patterns inside HTML, JS, CSS and AJAX code
Dateigröße 171 KB
Installationsanzahl 637
Aktuelle Version 1.1
Letztes Update 2013-02-12
Veröffentlichungsdatum 2013-02-12
Bewertung 3.20/5 Insgesamt 5 Bewertungen
Entwickler carlosV2
Zahlungsart free
Unterstützte Sprachen 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",
        "*:\/\/*\/*"
    ]
}