ClickFix for Ontraport
Helps you find input/select field ID and Name easily
Vad är ClickFix for Ontraport?
ClickFix for Ontraport är en Chrome-tillägg utvecklad av ClickFix, och dess huvudfunktion är "Helps you find input/select field ID and Name easily".
Tilläggsskärmbilder
Ladda ner ClickFix for Ontraport-förlängningens CRX-fil
Ladda ner ClickFix for Ontraport-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | pemplgddodlclkbejdbfehpphfpcgfcc |
| Officiell webbadress | https://chromewebstore.google.com/detail/clickfix-for-ontraport/pemplgddodlclkbejdbfehpphfpcgfcc |
| Beskrivning | Helps you find input/select field ID and Name easily |
| Filstorlek | 683 KB |
| Antal Installationer | 278 |
| Aktuell Version | 1.0.2 |
| Senast Uppdaterad | 2019-01-19 |
| Publiceringsdatum | 2019-01-15 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | ClickFix |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://clickfix.io |
| Hjälpsida URL | https://app.clickfix.io/help-center/ |
| Stödda Språk | 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"
]
} | |