Lytics Stealth

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

Hvad er Lytics Stealth?

Lytics Stealth er en Chrome-udvidelse udviklet af Lytics, og dens hovedfunktion er "Installs the Lytics tag on any site and gives the ability to control the profile for demonstration purposes.".

Udvidelsesskærmbilleder

screenshot

Download Lytics Stealth-udvidelses-CRX-fil

Download Lytics Stealth-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                                            

Grundlæggende oplysninger om udvidelsen

Navn Lytics Stealth Lytics Stealth
ID hiebdjefngkoceamkdabgammdimalgdf
Officiel URL https://chromewebstore.google.com/detail/lytics-stealth/hiebdjefngkoceamkdabgammdimalgdf
Beskrivelse Installs the Lytics tag on any site and gives the ability to control the profile for demonstration purposes.
Filstørrelse 898 KB
Antal Installationer 13
Nuværende Version 0.0.3
Senest Opdateret 2017-03-31
Udgivelsesdato 2017-03-30
Udvikler Lytics
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted http://getlytics.com
Hjælpeside-URL https://github.com/markhayden/lytics-stealth/blob/master/README.md
Understøttede Sprog 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"
        }
    ]
}