Lytics Stealth

Installs the Lytics tag on any site and gives the ability to control the profile for demonstration purposes.

ما هو Lytics Stealth؟

Lytics Stealth هو إضافة Chrome تم تطويرها بواسطة Lytics، والميزة الرئيسية لها هي "Installs the Lytics tag on any site and gives the ability to control the profile for demonstration purposes.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Lytics Stealth

قم بتنزيل ملفات الامتداد Lytics Stealth بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                                            

معلومات أساسية عن التمديد

الاسم Lytics Stealth Lytics Stealth
ID hiebdjefngkoceamkdabgammdimalgdf
عنوان URL الرسمي https://chromewebstore.google.com/detail/lytics-stealth/hiebdjefngkoceamkdabgammdimalgdf
الوصف Installs the Lytics tag on any site and gives the ability to control the profile for demonstration purposes.
حجم الملف 898 KB
عدد التثبيتات 13
النسخة الحالية 0.0.3
آخر تحديث 2017-03-31
تاريخ النشر 2017-03-30
المطور Lytics
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة http://getlytics.com
عنوان صفحة المساعدة https://github.com/markhayden/lytics-stealth/blob/master/README.md
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Lytics Stealth",
    "short_name": "Lytics Stealth",
    "version": "0.0.3",
    "author": "Mark Hayden",
    "manifest_version": 2,
    "description": "Installs the Lytics tag on any site and gives the ability to control the profile for demonstration purposes.",
    "homepage_url": "http:\/\/getlytics.com",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "scripts": [
            "stealth.js",
            "background-init.js"
        ],
        "persistent": true
    },
    "options_page": "settings.html",
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Lytics Stealth",
        "default_popup": "interface.html"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "file:\/\/\/*\/*",
        "",
        "storage",
        "unlimitedStorage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "js": [
                "contentinit.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "js": [
                "contentlytics.js"
            ],
            "run_at": "document_end"
        }
    ]
}