Simple Analytics

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

Simple Analyticsคืออะไร?

Simple Analytics เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://simpleanalytics.com และคุณลักษณะหลักของมันคือ "Block your visits so they don't count towards your stats in Simple Analytics"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Simple Analytics

ดาวน์โหลดไฟล์ส่วนขยาย Simple Analytics ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
}