Piwik PRO - Site inspector
Allows to visualize data collected in Piwik PRO Analytics Suite on an underlying website.
什么是Piwik PRO - Site inspector?
Piwik PRO - Site inspector是由Piwik PRO开发的Chrome扩展程序,该扩展的主要功能是“Allows to visualize data collected in Piwik PRO Analytics Suite on an underlying website.”。
扩展截图
下载Piwik PRO - Site inspector扩展crx文件
下载Piwik PRO - Site inspector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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]
扩展基本信息
名称 | Piwik PRO - Site inspector |
ID | njcnagohlmamfijimejlnelenhahnoce |
官方URL | https://chromewebstore.google.com/detail/piwik-pro-site-inspector/njcnagohlmamfijimejlnelenhahnoce |
简介 | Allows to visualize data collected in Piwik PRO Analytics Suite on an underlying website. |
文件大小 | 8.43 MB |
安装次数 | 3,189 |
当前版本 | 1.3.4 |
更新时间 | 2023-08-17 |
上架时间 | 2021-07-18 |
评分 | 5.00/5 共2次评分 |
开发者 | Piwik PRO |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://piwik.pro/ |
帮助页面URL | https://help.piwik.pro/support/analytics-new/site-inspector/ |
隐私政策页面URL | https://piwik.pro/privacy-policy |
支持的语言 | 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", "*:\/\/*\/*" ] } |