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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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",
        "*:\/\/*\/*"
    ]
}