CF Auto Save
Automatically save your ClickFunnels pages every few minutes!
CF Auto Saveคืออะไร?
CF Auto Save เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://cfdesigntools.com และคุณลักษณะหลักของมันคือ "Automatically save your ClickFunnels pages every few minutes!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CF Auto Save
ดาวน์โหลดไฟล์ส่วนขยาย CF Auto Save ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Tired of losing hours of work because you forgot to save your funnel page? It gets even worse when the browser unexpectedly freezes or quits on you. Worry no more! With CF Auto Save extension, your funnel pages will save automatically every few minutes!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | CF Auto Save |
ID | cpcllmlbfcpekphiilblffjkoknpmgbp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/cf-auto-save/cpcllmlbfcpekphiilblffjkoknpmgbp |
คำอธิบาย | Automatically save your ClickFunnels pages every few minutes! |
ขนาดไฟล์ | 99.19 KB |
จำนวนการติดตั้ง | 78 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2021-02-17 |
วันที่เผยแพร่ | 2021-02-17 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | https://cfdesigntools.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.cfdesigntools.com |
URL หน้าช่วยเหลือ | https://www.cfdesigntools.com |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "CF Auto Save", "version": "1.0", "description": "Automatically save your ClickFunnels pages every few minutes!", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/*.clickfunnels.com\/pages\/*\/editor_v2*" ], "js": [ "content.js" ] } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_popup": "popup.html", "default_title": "CF Auto Save", "default_icon": "icon128.png" }, "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ] } } |