Google Analytics Realtime Favicon

Replaces the Google Analytics favicon with a real time count of your site's visitors.

Google Analytics Realtime Faviconคืออะไร?

Google Analytics Realtime Favicon เป็นส่วนขยายของ Chrome ที่พัฒนาโดย brendonboshell และคุณลักษณะหลักของมันคือ "Replaces the Google Analytics favicon with a real time count of your site's visitors."

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

screenshot

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

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

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

                        This extensions adds the realtime user count from Google Analytics's Realtime tab into the favicon. This allows you to use Google Analytics as a pinned tab, but still get a live count of visitors.                    

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

ชื่อ Google Analytics Realtime Favicon Google Analytics Realtime Favicon
ID hlgebiiefbpiamgdhoheckclfgbkklkh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/google-analytics-realtime/hlgebiiefbpiamgdhoheckclfgbkklkh
คำอธิบาย Replaces the Google Analytics favicon with a real time count of your site's visitors.
ขนาดไฟล์ 13.85 KB
จำนวนการติดตั้ง 111
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2016-05-23
วันที่เผยแพร่ 2016-05-23
ผู้พัฒนา brendonboshell
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Analytics Realtime Favicon",
    "description": "Replaces the Google Analytics favicon with a real time count of your site's visitors.",
    "version": "1.0",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "64": "icon64.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/analytics.google.com\/*"
            ],
            "js": [
                "tinycon.js",
                "replacefavicon.js"
            ]
        }
    ],
    "permissions": [
        "*:\/\/analytics.google.com\/",
        "*:\/\/ssl.gstatic.com\/",
        "tabs"
    ]
}