Quick source viewer

View current page sources: HTML + Javascript + CSS

¿Qué es Quick source viewer?

Quick source viewer es una extensión de Chrome desarrollada por Tomi Mickelsson, y su función principal es "View current page sources: HTML + Javascript + CSS".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Quick source viewer

Descarga archivos de extensión Quick source viewer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Quick source viewer Quick source viewer
ID cfmcghennfbpmhemnnfjhkdmnbidpanb
URL Oficial https://chromewebstore.google.com/detail/quick-source-viewer/cfmcghennfbpmhemnnfjhkdmnbidpanb
Descripción View current page sources: HTML + Javascript + CSS
Tamaño del Archivo 74.21 KB
Cantidad de Instalaciones 32,447
Versión Actual 1.4.0
Última Actualización 2021-06-05
Fecha de Publicación 2019-05-23
Calificación 3.65/5 Total de 112 Calificaciones
Desarrollador Tomi Mickelsson
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://tomicloud.com
URL de la Página de Ayuda https://tomicloud.com/2012/07/viewsrc-chrome-ext
Idiomas Soportados 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"
}