Lytics Stealth

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

Τι είναι το Lytics Stealth;

Το Lytics Stealth είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Lytics, και η κύρια λειτουργία του είναι "Installs the Lytics tag on any site and gives the ability to control the profile for demonstration purposes.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Lytics Stealth

Λήψη αρχείων επέκτασης Lytics Stealth σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                                            

Βασικές Πληροφορίες Επέκτασης

Όνομα Lytics Stealth Lytics Stealth
ID hiebdjefngkoceamkdabgammdimalgdf
Επίσημο URL https://chromewebstore.google.com/detail/lytics-stealth/hiebdjefngkoceamkdabgammdimalgdf
Περιγραφή Installs the Lytics tag on any site and gives the ability to control the profile for demonstration purposes.
Μέγεθος Αρχείου 898 KB
Αριθμός Εγκαταστάσεων 13
Τρέχουσα Έκδοση 0.0.3
Τελευταία Ενημέρωση 2017-03-31
Ημερομηνία Δημοσίευσης 2017-03-30
Προγραμματιστής Lytics
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://getlytics.com
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/markhayden/lytics-stealth/blob/master/README.md
Υποστηριζόμενες Γλώσσες 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"
        }
    ]
}