Simple Analytics

Block your visits so they don't count towards your stats in Simple Analytics

Simple Analytics란 무엇입니까?

Simple Analytics은(는) https://simpleanalytics.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Block your visits so they don't count towards your stats in Simple Analytics"입니다.

확장 프로그램 스크린샷

screenshot

Simple Analytics 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        It's useful for customers of Simple Analytics or non customers who want to block their visits to a specific website where Simple Analytics is installed. This way your stats will not included in the dashboard of that website. We do this via an extension so we don't need to record IP addresses.

This extension basically blocks requests on website where you give permission to. When you click on the icon you as asked to allow the extension to load the data from the current website. This is needed to block the visits. You need to do once this per website.

When a visits is blocked it shows up as a counter on the icon. The counter does reset when you close your tab. For more stats of blocked visits you can go to the permissions page of this extension.

On the options page you will find all websites being blocked and you can change what the extension should block.

This add-on does not connect to any servers. The source code is publicly available at https://github.com/simpleanalytics/extension.

Enjoy and if you have any feedback, go to our website and let us know!                    

확장 프로그램 기본 정보

이름 Simple Analytics Simple Analytics
ID ehkndchainpkdfpnancgobgfnfjnmmeh
공식 URL https://chromewebstore.google.com/detail/simple-analytics/ehkndchainpkdfpnancgobgfnfjnmmeh
설명 Block your visits so they don't count towards your stats in Simple Analytics
파일 크기 51.51 KB
설치 횟수 471
현재 버전 1.7
최근 업데이트 2020-09-23
출시 날짜 2020-06-15
평점 5.00/5 총 6 개의 평점
개발자 https://simpleanalytics.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://simpleanalytics.com
도움말 페이지 URL https://docs.simpleanalytics.com/extension
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Simple Analytics",
    "description": "Block your visits so they don't count towards your stats in Simple Analytics",
    "manifest_version": 2,
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "128": "128.png"
    },
    "browser_action": {
        "default_title": "Simple Analytics"
    },
    "optional_permissions": [
        ""
    ],
    "permissions": [
        "*:\/\/*.simpleanalytics.io\/*",
        "*:\/\/*.simpleanalyticscdn.com\/*",
        "webRequest",
        "webRequestBlocking",
        "storage",
        "activeTab",
        "declarativeContent"
    ],
    "version": "1.7"
}