Quick source viewer

View current page sources: HTML + Javascript + CSS

O que é Quick source viewer?

Quick source viewer é uma extensão do Chrome desenvolvida por Tomi Mickelsson, e sua principal característica é "View current page sources: HTML + Javascript + CSS".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Quick source viewer

Baixe arquivos de extensão Quick source viewer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Quick source viewer Quick source viewer
ID cfmcghennfbpmhemnnfjhkdmnbidpanb
URL Oficial https://chromewebstore.google.com/detail/quick-source-viewer/cfmcghennfbpmhemnnfjhkdmnbidpanb
Descrição View current page sources: HTML + Javascript + CSS
Tamanho do Arquivo 74.21 KB
Contagem de Instalações 32,447
Versão Atual 1.4.0
Última Atualização 2021-06-05
Data de Publicação 2019-05-23
Classificação 3.65/5 Total de 112 Avaliações
Desenvolvedor Tomi Mickelsson
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://tomicloud.com
URL da Página de Ajuda https://tomicloud.com/2012/07/viewsrc-chrome-ext
Idiomas Suportados 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"
}