CF Affiliate Helper
Delete aff login cookie on *.clickfunnels.com
Apa itu CF Affiliate Helper?
CF Affiliate Helper adalah ekstensi Chrome yang dikembangkan oleh LostDuckTech, dan fitur utamanya adalah "Delete aff login cookie on *.clickfunnels.com".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi CF Affiliate Helper
Unduh file ekstensi CF Affiliate Helper dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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!
Informasi Dasar Ekstensi
Nama | |
ID | mojdjpahhgfdbmnonnconkdjclceimfo |
URL Resmi | https://chrome.google.com/webstore/detail/cf-affiliate-helper/mojdjpahhgfdbmnonnconkdjclceimfo |
Deskripsi | Delete aff login cookie on *.clickfunnels.com |
Ukuran File | 26.02 KB |
Jumlah Instalasi | 24 |
Versi Saat Ini | 1.1.0 |
Terakhir Diperbarui | 2019-01-19 |
Tanggal Publikasi | 2019-01-19 |
Pengembang | LostDuckTech |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Kebijakan Privasi | https://www.lostducktech.com/privacy_extensions |
Bahasa yang Didukung | 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 } } |