Piwik PRO - Site inspector

Allows to visualize data collected in Piwik PRO Analytics Suite on an underlying website.

Piwik PRO - Site inspector là gì?

Piwik PRO - Site inspector là một tiện ích mở rộng Chrome được phát triển bởi Piwik PRO, và tính năng chính của nó là "Allows to visualize data collected in Piwik PRO Analytics Suite on an underlying website.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Piwik PRO - Site inspector

Tải xuống các tệp mở rộng Piwik PRO - Site inspector 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

                        Extension connects with Piwik PRO instance to visualize tracked data on the page. It supports visualization of clicks (heatmap or tooltips with numerical data), page scrolling information and debugging panel showing tracking requests sent from page.

Requirements:
* To access any data you have to own an account in a Piwik PRO instance.
* Piwik PRO instance has to be configured to gather heatmap events (clicks or scrolling).

To use this extension, You need to follow these steps:
* Click on extension button to open side panel
* Login to Piwik PRO instance in side panel
* Enable visualisation that You want to show

Complete setup is described here: https://help.piwik.pro/support/analytics-new/site-inspector/ 

You can ask questions about the plugin and report bugs at [email protected]                    

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

Tên Piwik PRO - Site inspector Piwik PRO - Site inspector
ID njcnagohlmamfijimejlnelenhahnoce
URL Chính Thức https://chromewebstore.google.com/detail/piwik-pro-site-inspector/njcnagohlmamfijimejlnelenhahnoce
Mô tả Allows to visualize data collected in Piwik PRO Analytics Suite on an underlying website.
Kích Thước Tệp 8.43 MB
Số Lần Cài Đặt 3,189
Phiên Bản Hiện Tại 1.3.4
Cập Nhật Lần Cuối 2023-08-17
Ngày Phát Hành 2021-07-18
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Piwik PRO
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://piwik.pro/
URL Trang Trợ Giúp https://help.piwik.pro/support/analytics-new/site-inspector/
URL Trang Chính Sách Bảo Mật https://piwik.pro/privacy-policy
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Piwik PRO - Site inspector",
    "description": "Allows to visualize data collected in Piwik PRO Analytics Suite on an underlying website.",
    "version": "1.3.4",
    "browser_action": {
        "default_icon": {
            "16": "pp-icon-16.png",
            "32": "pp-icon-32.png",
            "48": "pp-icon-48.png",
            "128": "pp-icon-128.png"
        }
    },
    "options_ui": {
        "page": "js\/options.html",
        "open_in_tab": true
    },
    "background": {
        "scripts": [
            "hot-reload.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/app.js"
            ],
            "css": [
                "js\/tippy.css",
                "js\/extension.css"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        "js\/app.css"
    ],
    "permissions": [
        "storage",
        "*:\/\/*\/*"
    ]
}