CF Affiliate Helper
Delete aff login cookie on *.clickfunnels.com
O que é CF Affiliate Helper?
CF Affiliate Helper é uma extensão do Chrome desenvolvida por LostDuckTech, e sua principal característica é "Delete aff login cookie on *.clickfunnels.com".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão CF Affiliate Helper
Baixe arquivos de extensão CF Affiliate Helper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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!
Informações Básicas da Extensão
Nome | |
ID | mojdjpahhgfdbmnonnconkdjclceimfo |
URL Oficial | https://chrome.google.com/webstore/detail/cf-affiliate-helper/mojdjpahhgfdbmnonnconkdjclceimfo |
Descrição | Delete aff login cookie on *.clickfunnels.com |
Tamanho do Arquivo | 26.02 KB |
Contagem de Instalações | 24 |
Versão Atual | 1.1.0 |
Última Atualização | 2019-01-19 |
Data de Publicação | 2019-01-19 |
Desenvolvedor | LostDuckTech |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://www.lostducktech.com/privacy_extensions |
Idiomas Suportados | 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 } } |