ClickFix for Ontraport

Helps you find input/select field ID and Name easily

Cos'è ClickFix for Ontraport?

ClickFix for Ontraport è un'estensione di Chrome sviluppata da ClickFix, e la sua funzione principale è "Helps you find input/select field ID and Name easily".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione ClickFix for Ontraport

Scarica i file di estensione ClickFix for Ontraport in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome ClickFix for Ontraport ClickFix for Ontraport
ID pemplgddodlclkbejdbfehpphfpcgfcc
URL Ufficiale https://chromewebstore.google.com/detail/clickfix-for-ontraport/pemplgddodlclkbejdbfehpphfpcgfcc
Descrizione Helps you find input/select field ID and Name easily
Dimensione del File 683 KB
Conteggio Installazioni 278
Versione Corrente 1.0.2
Ultimo Aggiornamento 2019-01-19
Data di Pubblicazione 2019-01-15
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore ClickFix
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://clickfix.io
URL della Pagina di Aiuto https://app.clickfix.io/help-center/
Lingue Supportate 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"
    ]
}