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文件

下載CF Affiliate Helper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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