Quick source viewer

View current page sources: HTML + Javascript + CSS

What is Quick source viewer?

Quick source viewer is a Chrome extension developed by Tomi Mickelsson, and its main feature is "View current page sources: HTML + Javascript + CSS".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Quick source viewer Extension CRX File

Download Quick source viewer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Quick source viewer Quick source viewer
ID cfmcghennfbpmhemnnfjhkdmnbidpanb
Official URL https://chromewebstore.google.com/detail/quick-source-viewer/cfmcghennfbpmhemnnfjhkdmnbidpanb
Description View current page sources: HTML + Javascript + CSS
File Size 74.21 KB
Installation Count 32,447
Current Version 1.4.0
Last Updated 2021-06-05
Publish Date 2019-05-23
Rating 3.65/5 Total 112 Ratings
Developer Tomi Mickelsson
Email [email protected]
Payment Type free
Extension Website https://tomicloud.com
Help Page URL https://tomicloud.com/2012/07/viewsrc-chrome-ext
Supported Languages 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"
}