Lytics Stealth

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

Qu'est-ce que Lytics Stealth ?

Lytics Stealth est une extension Chrome développée par Lytics, et sa fonction principale est "Installs the Lytics tag on any site and gives the ability to control the profile for demonstration purposes.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Lytics Stealth

Téléchargez les fichiers d'extension Lytics Stealth au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                                            

Informations de Base sur l'Extension

Nom Lytics Stealth Lytics Stealth
ID hiebdjefngkoceamkdabgammdimalgdf
URL Officiel 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.
Taille du Fichier 898 KB
Nombre d'Installations 13
Version Actuelle 0.0.3
Dernière Mise à Jour 2017-03-31
Date de Publication 2017-03-30
Développeur Lytics
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://getlytics.com
URL de la Page d'Aide https://github.com/markhayden/lytics-stealth/blob/master/README.md
Langues Prises en Charge 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"
        }
    ]
}