Lytics Stealth

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

Was ist Lytics Stealth?

Lytics Stealth ist eine Chrome-Erweiterung, die von Lytics entwickelt wurde, und ihr Hauptmerkmal ist "Installs the Lytics tag on any site and gives the ability to control the profile for demonstration purposes.".

Erweiterungsscreenshots

screenshot

Lytics Stealth-Erweiterungs-CRX-Datei herunterladen

Laden Sie Lytics Stealth-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                                            

Grundlegende Informationen zur Erweiterung

Name Lytics Stealth Lytics Stealth
ID hiebdjefngkoceamkdabgammdimalgdf
Offizielle URL https://chromewebstore.google.com/detail/lytics-stealth/hiebdjefngkoceamkdabgammdimalgdf
Beschreibung Installs the Lytics tag on any site and gives the ability to control the profile for demonstration purposes.
Dateigröße 898 KB
Installationsanzahl 13
Aktuelle Version 0.0.3
Letztes Update 2017-03-31
Veröffentlichungsdatum 2017-03-30
Entwickler Lytics
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://getlytics.com
Hilfeseite URL https://github.com/markhayden/lytics-stealth/blob/master/README.md
Unterstützte Sprachen 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"
        }
    ]
}