CF Auto Save

Automatically save your ClickFunnels pages every few minutes!

CF Auto Save là gì?

CF Auto Save là một tiện ích mở rộng Chrome được phát triển bởi https://cfdesigntools.com, và tính năng chính của nó là "Automatically save your ClickFunnels pages every few minutes!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng CF Auto Save

Tải xuống các tệp mở rộng CF Auto Save dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên CF Auto Save CF Auto Save
ID cpcllmlbfcpekphiilblffjkoknpmgbp
URL Chính Thức https://chromewebstore.google.com/detail/cf-auto-save/cpcllmlbfcpekphiilblffjkoknpmgbp
Mô tả Automatically save your ClickFunnels pages every few minutes!
Kích Thước Tệp 99.19 KB
Số Lần Cài Đặt 78
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-02-17
Ngày Phát Hành 2021-02-17
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://cfdesigntools.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.cfdesigntools.com
URL Trang Trợ Giúp https://www.cfdesigntools.com
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}