console.sparkline

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

What is console.sparkline?

console.sparkline is a Chrome extension developed by Johan Sundström, and its main feature is "Adds console.sparkline to all web pages and Chrome Devtools.".

Extension Screenshots

screenshot

Download console.sparkline Extension CRX File

Download console.sparkline 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

                        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.                    

Extension Basic Information

Name console.sparkline console.sparkline
ID hddfodiadnhfldjejimncjlkcjafgcgb
Official URL https://chromewebstore.google.com/detail/consolesparkline/hddfodiadnhfldjejimncjlkcjafgcgb
Description Adds console.sparkline to all web pages and Chrome Devtools.
File Size 4.7 KB
Installation Count 127
Current Version 1.1
Last Updated 2016-08-30
Publish Date 2016-08-30
Rating 5.00/5 Total 1 Ratings
Developer Johan Sundström
Payment Type free
Extension Website https://github.com/johan/console.sparkline
Supported Languages 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"
    ]
}