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
Eメール [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"
        }
    ]
}