CF Auto Save

Automatically save your ClickFunnels pages every few minutes!

什么是CF Auto Save?

CF Auto Save是由https://cfdesigntools.com开发的Chrome扩展程序,该扩展的主要功能是“Automatically save your ClickFunnels pages every few minutes!”。

扩展截图

screenshot

下载CF Auto Save扩展crx文件

下载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 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"
        ]
    }
}