Lytics Stealth

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

Wat is Lytics Stealth?

Lytics Stealth is een Chrome-extensie ontwikkeld door Lytics, en de belangrijkste functie is "Installs the Lytics tag on any site and gives the ability to control the profile for demonstration purposes.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Lytics Stealth

Download Lytics Stealth-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                                            

Basisinformatie over de Extensie

Naam Lytics Stealth Lytics Stealth
ID hiebdjefngkoceamkdabgammdimalgdf
Officiële URL https://chromewebstore.google.com/detail/lytics-stealth/hiebdjefngkoceamkdabgammdimalgdf
Beschrijving Installs the Lytics tag on any site and gives the ability to control the profile for demonstration purposes.
Bestandsgrootte 898 KB
Aantal Installaties 13
Huidige Versie 0.0.3
Laatst Bijgewerkt 2017-03-31
Publicatiedatum 2017-03-30
Ontwikkelaar Lytics
E-mail [email protected]
Betalingswijze free
Extensiewebsite http://getlytics.com
Help Pagina-URL https://github.com/markhayden/lytics-stealth/blob/master/README.md
Ondersteunde Talen 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"
        }
    ]
}