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
官方網址 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"
        }
    ]
}