console.sparkline

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

console.sparkline là gì?

console.sparkline là một tiện ích mở rộng Chrome được phát triển bởi Johan Sundström, và tính năng chính của nó là "Adds console.sparkline to all web pages and Chrome Devtools.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng console.sparkline

Tải xuống các tệp mở rộng console.sparkline dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên console.sparkline console.sparkline
ID hddfodiadnhfldjejimncjlkcjafgcgb
URL Chính Thức https://chromewebstore.google.com/detail/consolesparkline/hddfodiadnhfldjejimncjlkcjafgcgb
Mô tả Adds console.sparkline to all web pages and Chrome Devtools.
Kích Thước Tệp 4.7 KB
Số Lần Cài Đặt 127
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2016-08-30
Ngày Phát Hành 2016-08-30
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Johan Sundström
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/johan/console.sparkline
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}