console.sparkline

Adds console.sparkline to all web pages and Chrome Devtools.

Wat is console.sparkline?

console.sparkline is een Chrome-extensie ontwikkeld door Johan Sundström, en de belangrijkste functie is "Adds console.sparkline to all web pages and Chrome Devtools.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie console.sparkline

Download console.sparkline-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        console.sparkline() is a chrome devtools extension that adds a tool similar to console.log(), but that renders arrays of numbers as little inline sparkline images for you. Great for quickly visualizing time series you encounter while you are hacking on something.                    

Basisinformatie over de Extensie

Naam console.sparkline console.sparkline
ID hddfodiadnhfldjejimncjlkcjafgcgb
Officiële URL https://chromewebstore.google.com/detail/consolesparkline/hddfodiadnhfldjejimncjlkcjafgcgb
Beschrijving Adds console.sparkline to all web pages and Chrome Devtools.
Bestandsgrootte 4.7 KB
Aantal Installaties 127
Huidige Versie 1.1
Laatst Bijgewerkt 2016-08-30
Publicatiedatum 2016-08-30
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Johan Sundström
Betalingswijze free
Extensiewebsite https://github.com/johan/console.sparkline
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "console.sparkline",
    "version": "1.1",
    "description": "Adds console.sparkline to all web pages and Chrome Devtools.",
    "author": "Johan Sundstr\u00f6m",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "console.sparkline.js"
    ]
}