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
官方網址 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"
}