ClickFix for Ontraport
Helps you find input/select field ID and Name easily
Co je ClickFix for Ontraport?
ClickFix for Ontraport je rozšíření Chrome vyvinuté ClickFix, a jeho hlavní funkcí je „Helps you find input/select field ID and Name easily“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření ClickFix for Ontraport
Stáhněte si soubory rozšíření ClickFix for Ontraport ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | ClickFix for Ontraport |
ID | pemplgddodlclkbejdbfehpphfpcgfcc |
Oficiální URL | https://chromewebstore.google.com/detail/clickfix-for-ontraport/pemplgddodlclkbejdbfehpphfpcgfcc |
Popis | Helps you find input/select field ID and Name easily |
Velikost souboru | 683 KB |
Počet instalací | 278 |
Aktuální Verze | 1.0.2 |
Poslední Aktualizace | 2019-01-19 |
Datum Vydání | 2019-01-15 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | ClickFix |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://clickfix.io |
URL Stránky Nápovědy | https://app.clickfix.io/help-center/ |
Podporované Jazyky | 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" ] } |