ClickFix for Ontraport

Helps you find input/select field ID and Name easily

什么是ClickFix for Ontraport?

ClickFix for Ontraport是由ClickFix开发的Chrome扩展程序,该扩展的主要功能是“Helps you find input/select field ID and Name easily”。

扩展截图

screenshot

下载ClickFix for Ontraport扩展crx文件

下载ClickFix for Ontraport扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        The ClickFix plugin will let you :

Highlight :

Field names and Field IDs on an Ontraport Page
Bumps IDs on an Ontraport Page
Columns IDs on an Ontraport Page
Elements IDs on an Ontraport Page

Use Shortcuts in Ontraport :

decide your own key combinations
use the SAVE button via Ctrl + S in Ontraport
get the cursor to the search box by using Ctrl + Shift + F in Ontraport
go to the previous page using Ctrl + Backspace
clone current page using Ctrl + Shift + U

Requires a (free) ClickFix account : https://clickfix.io

Last Updates :
- fixed an issue with shortcuts not functionning in some version of Chrome                    

扩展基本信息

名称 ClickFix for Ontraport ClickFix for Ontraport
ID pemplgddodlclkbejdbfehpphfpcgfcc
官方URL https://chromewebstore.google.com/detail/clickfix-for-ontraport/pemplgddodlclkbejdbfehpphfpcgfcc
简介 Helps you find input/select field ID and Name easily
文件大小 683 KB
安装次数 278
当前版本 1.0.2
更新时间 2019-01-19
上架时间 2019-01-15
评分 5.00/5 共1次评分
开发者 ClickFix
电子邮箱 [email protected]
付费类型 free
扩展官网 https://clickfix.io
帮助页面URL https://app.clickfix.io/help-center/
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ClickFix for Ontraport",
    "version": "1.0.2",
    "description": "Helps you find input\/select field ID and Name easily",
    "browser_action": {
        "default_title": "Start",
        "default_popup": "popup\/index.html",
        "default_icon": {
            "32": "images\/icon32.png",
            "128": "images\/icon.jpg"
        }
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "page\/page.css"
            ],
            "js": [
                "page\/page.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ]
}