CF Affiliate Helper
Delete aff login cookie on *.clickfunnels.com
Vad är CF Affiliate Helper?
CF Affiliate Helper är en Chrome-tillägg utvecklad av LostDuckTech, och dess huvudfunktion är "Delete aff login cookie on *.clickfunnels.com".
Tilläggsskärmbilder
Ladda ner CF Affiliate Helper-förlängningens CRX-fil
Ladda ner CF Affiliate Helper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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!
Grundläggande Information om Tillägg
Namn | |
ID | mojdjpahhgfdbmnonnconkdjclceimfo |
Officiell webbadress | https://chrome.google.com/webstore/detail/cf-affiliate-helper/mojdjpahhgfdbmnonnconkdjclceimfo |
Beskrivning | Delete aff login cookie on *.clickfunnels.com |
Filstorlek | 26.02 KB |
Antal Installationer | 24 |
Aktuell Version | 1.1.0 |
Senast Uppdaterad | 2019-01-19 |
Publiceringsdatum | 2019-01-19 |
Utvecklare | LostDuckTech |
E-post | [email protected] |
Betalningssätt | free |
URL till Sekretesspolicy Sidan | https://www.lostducktech.com/privacy_extensions |
Stödda Språk | 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 } } |