CF Affiliate Helper

Delete aff login cookie on *.clickfunnels.com

CF Affiliate Helper là gì?

CF Affiliate Helper là một tiện ích mở rộng Chrome được phát triển bởi LostDuckTech, và tính năng chính của nó là "Delete aff login cookie on *.clickfunnels.com".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng CF Affiliate Helper

Tải xuống các tệp mở rộng CF Affiliate Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên CF Affiliate Helper CF Affiliate Helper
ID mojdjpahhgfdbmnonnconkdjclceimfo
URL Chính Thức https://chrome.google.com/webstore/detail/cf-affiliate-helper/mojdjpahhgfdbmnonnconkdjclceimfo
Mô tả Delete aff login cookie on *.clickfunnels.com
Kích Thước Tệp 26.02 KB
Số Lần Cài Đặt 24
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2019-01-19
Ngày Phát Hành 2019-01-19
Nhà Phát Triển LostDuckTech
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://www.lostducktech.com/privacy_extensions
Ngôn Ngữ Được Hỗ Trợ 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
    }
}