ClickFix for Ontraport
Helps you find input/select field ID and Name easily
What is ClickFix for Ontraport?
ClickFix for Ontraport is a Chrome extension developed by ClickFix, and its main feature is "Helps you find input/select field ID and Name easily".
Extension Screenshots
Download ClickFix for Ontraport Extension CRX File
Download ClickFix for Ontraport extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | ClickFix for Ontraport |
ID | pemplgddodlclkbejdbfehpphfpcgfcc |
Official URL | https://chromewebstore.google.com/detail/clickfix-for-ontraport/pemplgddodlclkbejdbfehpphfpcgfcc |
Description | Helps you find input/select field ID and Name easily |
File Size | 683 KB |
Installation Count | 278 |
Current Version | 1.0.2 |
Last Updated | 2019-01-19 |
Publish Date | 2019-01-15 |
Rating | 5.00/5 Total 1 Ratings |
Developer | ClickFix |
[email protected] | |
Payment Type | free |
Extension Website | https://clickfix.io |
Help Page URL | https://app.clickfix.io/help-center/ |
Supported Languages | 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" ] } |