console.sparkline

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

什么是console.sparkline?

console.sparkline是由Johan Sundström开发的Chrome扩展程序,该扩展的主要功能是“Adds console.sparkline to all web pages and Chrome Devtools.”。

扩展截图

screenshot

下载console.sparkline扩展crx文件

下载console.sparkline扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 console.sparkline console.sparkline
ID hddfodiadnhfldjejimncjlkcjafgcgb
官方URL https://chromewebstore.google.com/detail/consolesparkline/hddfodiadnhfldjejimncjlkcjafgcgb
简介 Adds console.sparkline to all web pages and Chrome Devtools.
文件大小 4.7 KB
安装次数 127
当前版本 1.1
更新时间 2016-08-30
上架时间 2016-08-30
评分 5.00/5 共1次评分
开发者 Johan Sundström
付费类型 free
扩展官网 https://github.com/johan/console.sparkline
支持的语言 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"
    ]
}