Web Inspector

Have you ever wanted to know which is that stylish font used on a certain website? Or the text color used? Or have you ever wanted…

Web Inspector란 무엇입니까?

Web Inspector은(는) bensampaio에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Have you ever wanted to know which is that stylish font used on a certain website? Or the text color used? Or have you ever wanted…"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Web Inspector 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Have you ever wanted to know which is that stylish font used on a certain website? Or the text color used?

Or have you ever wanted to know the dimensions of an image without having to download it? Or a audio / video source URL?

If yes, this is the extension for you. Install Web Inspector on Chrome and on a certain page click on the extension icon. Then mouse over a certain element you are curious about and click on it. A window will be displayed around this item with information about the font used, the text color, the background color, the source URL (in case it is a multimedia item), among others. If you don't want to inspect any more element on the page just click on the extension icon again to turn it off.

In case you would like to contribute you can find our GitHub page here: https://github.com/Anakin88/chrome-extension-web_inspector.

Use it to inspect the Web. Hope you like it!                    

확장 프로그램 기본 정보

이름 Web Inspector Web Inspector
ID enibedkmbpadhfofcgjcphipflcbpelf
공식 URL https://chromewebstore.google.com/detail/web-inspector/enibedkmbpadhfofcgjcphipflcbpelf
설명 Have you ever wanted to know which is that stylish font used on a certain website? Or the text color used? Or have you ever wanted…
파일 크기 1.63 MB
설치 횟수 20,000
현재 버전 0.6.0
최근 업데이트 2017-03-09
출시 날짜 2017-03-08
평점 3.60/5 총 30 개의 평점
개발자 bensampaio
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Anakin88/chrome-extension-web_inspector
도움말 페이지 URL https://github.com/Anakin88/chrome-extension-web_inspector/wiki
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Web Inspector",
    "short_name": "WI",
    "version": "0.6.0",
    "author": "Bruno Sampaio",
    "default_locale": "en",
    "description": "",
    "icons": {
        "16": "img\/logo16.png",
        "48": "img\/logo48.png",
        "128": "img\/logo128.png"
    },
    "background": {
        "scripts": [
            "dist\/background.min.js"
        ]
    },
    "browser_action": {
        "default_icon": "img\/icon_inactive.png",
        "name": "Click to activate or deactivate on current page."
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "dist\/general.min.css"
            ],
            "js": [
                "dist\/jquery.min.js",
                "dist\/init.min.js"
            ]
        }
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}