Quick source viewer

View current page sources: HTML + Javascript + CSS

Cos'è Quick source viewer?

Quick source viewer è un'estensione di Chrome sviluppata da Tomi Mickelsson, e la sua funzione principale è "View current page sources: HTML + Javascript + CSS".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Quick source viewer

Scarica i file di estensione Quick source viewer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Quick source viewer Quick source viewer
ID cfmcghennfbpmhemnnfjhkdmnbidpanb
URL Ufficiale https://chromewebstore.google.com/detail/quick-source-viewer/cfmcghennfbpmhemnnfjhkdmnbidpanb
Descrizione View current page sources: HTML + Javascript + CSS
Dimensione del File 74.21 KB
Conteggio Installazioni 32,447
Versione Corrente 1.4.0
Ultimo Aggiornamento 2021-06-05
Data di Pubblicazione 2019-05-23
Valutazione 3.65/5 Totale 112 Valutazioni
Sviluppatore Tomi Mickelsson
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://tomicloud.com
URL della Pagina di Aiuto https://tomicloud.com/2012/07/viewsrc-chrome-ext
Lingue Supportate 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"
}