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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                                            

확장 프로그램 기본 정보

이름 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"
        }
    ]
}