Lytics Stealth

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

Co je Lytics Stealth?

Lytics Stealth je rozšíření Chrome vyvinuté Lytics, a jeho hlavní funkcí je „Installs the Lytics tag on any site and gives the ability to control the profile for demonstration purposes.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Lytics Stealth

Stáhněte si soubory rozšíření Lytics Stealth ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                                            

Základní Informace o Rozšíření

Název Lytics Stealth Lytics Stealth
ID hiebdjefngkoceamkdabgammdimalgdf
Oficiální URL https://chromewebstore.google.com/detail/lytics-stealth/hiebdjefngkoceamkdabgammdimalgdf
Popis Installs the Lytics tag on any site and gives the ability to control the profile for demonstration purposes.
Velikost souboru 898 KB
Počet instalací 13
Aktuální Verze 0.0.3
Poslední Aktualizace 2017-03-31
Datum Vydání 2017-03-30
Vývojář Lytics
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření http://getlytics.com
URL Stránky Nápovědy https://github.com/markhayden/lytics-stealth/blob/master/README.md
Podporované Jazyky 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"
        }
    ]
}