CF Auto Save
Automatically save your ClickFunnels pages every few minutes!
What is CF Auto Save?
CF Auto Save is a Chrome extension developed by https://cfdesigntools.com, and its main feature is "Automatically save your ClickFunnels pages every few minutes!".
Extension Screenshots
Download CF Auto Save Extension CRX File
Download CF Auto Save extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | CF Auto Save |
ID | cpcllmlbfcpekphiilblffjkoknpmgbp |
Official URL | https://chromewebstore.google.com/detail/cf-auto-save/cpcllmlbfcpekphiilblffjkoknpmgbp |
Description | Automatically save your ClickFunnels pages every few minutes! |
File Size | 99.19 KB |
Installation Count | 78 |
Current Version | 1.0 |
Last Updated | 2021-02-17 |
Publish Date | 2021-02-17 |
Rating | 5.00/5 Total 2 Ratings |
Developer | https://cfdesigntools.com |
[email protected] | |
Payment Type | free |
Extension Website | https://www.cfdesigntools.com |
Help Page URL | https://www.cfdesigntools.com |
Supported Languages | 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" ] } } |