Lytics Stealth

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

Apa itu Lytics Stealth?

Lytics Stealth adalah ekstensi Chrome yang dikembangkan oleh Lytics, dan fitur utamanya adalah "Installs the Lytics tag on any site and gives the ability to control the profile for demonstration purposes.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Lytics Stealth

Unduh file ekstensi Lytics Stealth dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                                            

Informasi Dasar Ekstensi

Nama Lytics Stealth Lytics Stealth
ID hiebdjefngkoceamkdabgammdimalgdf
URL Resmi https://chromewebstore.google.com/detail/lytics-stealth/hiebdjefngkoceamkdabgammdimalgdf
Deskripsi Installs the Lytics tag on any site and gives the ability to control the profile for demonstration purposes.
Ukuran File 898 KB
Jumlah Instalasi 13
Versi Saat Ini 0.0.3
Terakhir Diperbarui 2017-03-31
Tanggal Publikasi 2017-03-30
Pengembang Lytics
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi http://getlytics.com
URL Halaman Bantuan https://github.com/markhayden/lytics-stealth/blob/master/README.md
Bahasa yang Didukung 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"
        }
    ]
}