Lytics Stealth

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

What is Lytics Stealth?

Lytics Stealth is a Chrome extension developed by Lytics, and its main feature is "Installs the Lytics tag on any site and gives the ability to control the profile for demonstration purposes.".

Extension Screenshots

screenshot

Download Lytics Stealth Extension CRX File

Download Lytics Stealth extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                                            

Extension Basic Information

Name Lytics Stealth Lytics Stealth
ID hiebdjefngkoceamkdabgammdimalgdf
Official URL https://chromewebstore.google.com/detail/lytics-stealth/hiebdjefngkoceamkdabgammdimalgdf
Description Installs the Lytics tag on any site and gives the ability to control the profile for demonstration purposes.
File Size 898 KB
Installation Count 13
Current Version 0.0.3
Last Updated 2017-03-31
Publish Date 2017-03-30
Developer Lytics
Email [email protected]
Payment Type free
Extension Website http://getlytics.com
Help Page URL https://github.com/markhayden/lytics-stealth/blob/master/README.md
Supported Languages 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"
        }
    ]
}