CF Affiliate Helper

Delete aff login cookie on *.clickfunnels.com

CF Affiliate Helper란 무엇입니까?

CF Affiliate Helper은(는) LostDuckTech에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Delete aff login cookie on *.clickfunnels.com"입니다.

확장 프로그램 스크린샷

screenshot

CF Affiliate Helper 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Have trouble logging in to Affiliate Accounts that use ClickFunnels Backpack? Well this fixes the issue by allowing you to remove the cookie that creates the issue. 

Hope this helps!                    

확장 프로그램 기본 정보

이름 CF Affiliate Helper CF Affiliate Helper
ID mojdjpahhgfdbmnonnconkdjclceimfo
공식 URL https://chrome.google.com/webstore/detail/cf-affiliate-helper/mojdjpahhgfdbmnonnconkdjclceimfo
설명 Delete aff login cookie on *.clickfunnels.com
파일 크기 26.02 KB
설치 횟수 24
현재 버전 1.1.0
최근 업데이트 2019-01-19
출시 날짜 2019-01-19
개발자 LostDuckTech
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://www.lostducktech.com/privacy_extensions
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CF Affiliate Helper",
    "author": "LostDuckTech",
    "description": "Delete aff login cookie on *.clickfunnels.com",
    "version": "1.1.0",
    "permissions": [
        "tabs",
        "activeTab",
        "cookies",
        "https:\/\/*.clickfunnels.com\/*"
    ],
    "browser_action": {
        "default_icon": "icon-16.png"
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.clickfunnels.com\/*"
            ],
            "js": [
                "inject.js"
            ],
            "all_frames": false
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}