Meta Debugger

Debug the head section of any webpage in a comfortable way.

Meta Debugger란 무엇입니까?

Meta Debugger은(는) bluemoehre에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Debug the head section of any webpage in a comfortable way."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Meta Debugger 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This Chrome extension was made to simplify the daily work with webpage meta data (head contents) like titles, canonicals, Open Graph data, icons and many more things. 

It will add another panel to your Chrome DevTools and allow you to see all information at a glance, nicely grouped and in real time.

- Results are displayed in their source code order
- The result list is always kept up-to-date. When (for whatever reason) it seems stucked, you may press the reload button located at the upper right.
- The filter can be easily used by starting typing (the input doesn't need to be focused before)
- You can filter by multiple arguments if you use `,` as delimiter (e.g. "title, canonical")
- To show up result options/actions simply hover its row

If you find some bugs please report them via Github:
https://github.com/bluemoehre/chrome-meta-debugger
Thanks!                    

확장 프로그램 기본 정보

이름 Meta Debugger Meta Debugger
ID jfpdemgdamgplelnlmaecbonkfgfgomp
공식 URL https://chromewebstore.google.com/detail/meta-debugger/jfpdemgdamgplelnlmaecbonkfgfgomp
설명 Debug the head section of any webpage in a comfortable way.
파일 크기 59.75 KB
설치 횟수 1,782
현재 버전 0.7
최근 업데이트 2018-12-20
출시 날짜 2018-12-19
평점 4.89/5 총 9 개의 평점
개발자 bluemoehre
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/bluemoehre/chrome-meta-debugger
도움말 페이지 URL https://github.com/bluemoehre/chrome-meta-debugger/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Meta Debugger",
    "description": "Debug the head section of any webpage in a comfortable way.",
    "version": "0.7",
    "author": "bluemoehre",
    "permissions": [
        "activeTab",
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/icon.png",
            "38": "img\/icon38.png"
        },
        "default_title": "Meta Debugger Extension",
        "default_popup": "html\/popup.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "devtools_page": "html\/background-devtools.html"
}