CF Affiliate Helper
Delete aff login cookie on *.clickfunnels.com
ما هو CF Affiliate Helper؟
CF Affiliate Helper هو إضافة Chrome تم تطويرها بواسطة LostDuckTech، والميزة الرئيسية لها هي "Delete aff login cookie on *.clickfunnels.com".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة CF Affiliate Helper
قم بتنزيل ملفات الامتداد CF Affiliate Helper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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!
معلومات أساسية عن التمديد
الاسم | |
ID | mojdjpahhgfdbmnonnconkdjclceimfo |
عنوان URL الرسمي | 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 |
عنوان صفحة سياسة الخصوصية | 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 } } |