Quick source viewer

View current page sources: HTML + Javascript + CSS

Quick source viewer란 무엇입니까?

Quick source viewer은(는) Tomi Mickelsson에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "View current page sources: HTML + Javascript + CSS"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Quick source viewer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Displays HTML, Javascript and CSS sources of a page in a fast and compact way.

Source code is syntax colorized and beautified for easy reading.

Badge in the toolbar shows Javascript node counts.

File size and cache header is displayed.

Display onclick handlers with inline javascript.

Look and feel can be modified with custom CSS.

Copy to clipboard. Line numbers.

Selected urls can be hilighted in the list of source files.

Open source - https://github.com/tomimick/chrome-ext-view-src

Blog - http://tomicloud.com/2012/07/viewsrc-chrome-ext                    

확장 프로그램 기본 정보

이름 Quick source viewer Quick source viewer
ID cfmcghennfbpmhemnnfjhkdmnbidpanb
공식 URL https://chromewebstore.google.com/detail/quick-source-viewer/cfmcghennfbpmhemnnfjhkdmnbidpanb
설명 View current page sources: HTML + Javascript + CSS
파일 크기 74.21 KB
설치 횟수 32,447
현재 버전 1.4.0
최근 업데이트 2021-06-05
출시 날짜 2019-05-23
평점 3.65/5 총 112 개의 평점
개발자 Tomi Mickelsson
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://tomicloud.com
도움말 페이지 URL https://tomicloud.com/2012/07/viewsrc-chrome-ext
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quick source viewer",
    "short_name": "source view",
    "version": "1.4.0",
    "description": "View current page sources: HTML + Javascript + CSS",
    "permissions": [
        ""
    ],
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "gear19.png"
    },
    "icons": {
        "16": "gear19.png",
        "128": "gear128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "load.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "config.js",
            "bg.js"
        ]
    },
    "minimum_chrome_version": "26"
}