ClickFix for Ontraport
Helps you find input/select field ID and Name easily
Co to jest ClickFix for Ontraport?
ClickFix for Ontraport to rozszerzenie Chrome opracowane przez ClickFix, a jego główną funkcją jest „Helps you find input/select field ID and Name easily”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia ClickFix for Ontraport
Pobierz pliki rozszerzeń ClickFix for Ontraport w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | pemplgddodlclkbejdbfehpphfpcgfcc |
| Oficjalny URL | https://chromewebstore.google.com/detail/clickfix-for-ontraport/pemplgddodlclkbejdbfehpphfpcgfcc |
| Opis | Helps you find input/select field ID and Name easily |
| Rozmiar pliku | 683 KB |
| Liczba instalacji | 278 |
| Aktualna Wersja | 1.0.2 |
| Ostatnia Aktualizacja | 2019-01-19 |
| Data Publikacji | 2019-01-15 |
| Ocena | 5.00/5 Łącznie 1 Oceny |
| Deweloper | ClickFix |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://clickfix.io |
| Adres URL Strony Pomocy | https://app.clickfix.io/help-center/ |
| Obsługiwane Języki | 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"
]
} | |