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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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", "*:\/\/*\/*" ] } |