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
电子邮箱 [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"
}