ClickFix for Ontraport
Helps you find input/select field ID and Name easily
Wat is ClickFix for Ontraport?
ClickFix for Ontraport is een Chrome-extensie ontwikkeld door ClickFix, en de belangrijkste functie is "Helps you find input/select field ID and Name easily".
Extensie Screenshots
Download het CRX-bestand van de extensie ClickFix for Ontraport
Download ClickFix for Ontraport-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | ClickFix for Ontraport |
ID | pemplgddodlclkbejdbfehpphfpcgfcc |
Officiële URL | https://chromewebstore.google.com/detail/clickfix-for-ontraport/pemplgddodlclkbejdbfehpphfpcgfcc |
Beschrijving | Helps you find input/select field ID and Name easily |
Bestandsgrootte | 683 KB |
Aantal Installaties | 278 |
Huidige Versie | 1.0.2 |
Laatst Bijgewerkt | 2019-01-19 |
Publicatiedatum | 2019-01-15 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | ClickFix |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://clickfix.io |
Help Pagina-URL | https://app.clickfix.io/help-center/ |
Ondersteunde Talen | 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" ] } |