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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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