StatusFrost - Statistics on Your Browsing

Track your personal browsing statistics

StatusFrost - Statistics on Your Browsingคืออะไร?

StatusFrost - Statistics on Your Browsing เป็นส่วนขยายของ Chrome ที่พัฒนาโดย statusfrost และคุณลักษณะหลักของมันคือ "Track your personal browsing statistics"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย StatusFrost - Statistics on Your Browsing

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

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

                        StatusFrost tracks your day-to-day web usage and allows you to view statistics on how you use the web. It will record personal statistics on things such as your typing speed and the pages you visit. StatusFrost will record your activity, much like many web trackers do, but instead of using that information for advertising purposes, it will simply display it to you in a concise, pleasant manner. StatusFrost is currently in the early stages of development, so here's a few things I hope to get done:
• Add more sites to category tracking list
• Add more metrics

Permissions explanation:
StatusFrost tries to use as few permissions as possible. Here are the permissions it uses and an explanation for why it uses them:
• Access to Tabs - StatusFrost needs access to these in order to gather statistics on events within the webpage
• Storage - StatusFrost use this to persist data so your statistics don't reset

Changelog:
  v0.2.1:
    • Fixed ratelimiting issue
  v0.2.0:
    • Several UI improvements
    • Mouse distance tracking
    • Minor fixes
  v0.1.4:
    • Added new category of sites: News
    • Improved doughnut chart colors
  v0.1.2:
    • Doughnut charts now display percentages
  v0.1.1:
    • Important hotfix
  v0.1.0:
    • Reduced scope of permissions
  v0.0.10:
    • Fixed CPM not updating properly
  v0.0.9:
    • Various fixes
    • Now tracking clicks as a metric
  v0.0.8:
    • Several minor fixes and tweaks
  v0.0.7:
    • Better domain matching
  v0.0.6:
    • Added commerce category
  v0.0.5:
    • Fixed CPM not displaying properly
  v0.0.3:
    • Fixed bug where data didn't display
    • More information displayed to users
StatusFrost is Open Source!
https://github.com/Plazmaz/StatusFrost/
Support the Author by donating here:
https://www.paypal.me/plazmaz                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ StatusFrost - Statistics on Your Browsing StatusFrost - Statistics on Your Browsing
ID efgmlgfbncefilioailalgpakojbmajh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/statusfrost-statistics-on/efgmlgfbncefilioailalgpakojbmajh
คำอธิบาย Track your personal browsing statistics
ขนาดไฟล์ 304 KB
จำนวนการติดตั้ง 15
เวอร์ชันปัจจุบัน 0.2.1
อัปเดตครั้งล่าสุด 2016-12-28
วันที่เผยแพร่ 2016-12-27
คะแนน 4.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา statusfrost
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/StatusFrost/StatusFrost/
URL หน้าช่วยเหลือ https://github.com/StatusFrost/StatusFrost/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "StatusFrost - Statistics on Your Browsing",
    "short_name": "StatusFrost",
    "version": "0.2.1",
    "manifest_version": 2,
    "description": "Track your personal browsing statistics",
    "homepage_url": "https:\/\/github.com\/Plazmaz\/StatusFrost",
    "icons": {
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "page": "src\/bg\/background.html",
        "persistent": true
    },
    "options_page": "src\/options_custom\/index.html",
    "browser_action": {
        "default_icon": "icons\/icon128.png",
        "default_title": "StatusFrost",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/raw.githubusercontent.com\/StatusFrost\/WebsiteCategories\/master\/website_categories.json"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}