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ファイルをダウンロード

Quick source viewer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
}