Lytics Stealth

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

什么是Lytics Stealth?

Lytics Stealth是由Lytics开发的Chrome扩展程序,该扩展的主要功能是“Installs the Lytics tag on any site and gives the ability to control the profile for demonstration purposes.”。

扩展截图

screenshot

下载Lytics Stealth扩展crx文件

下载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"
        }
    ]
}