ClickFix for Ontraport
Helps you find input/select field ID and Name easily
Hvad er ClickFix for Ontraport?
ClickFix for Ontraport er en Chrome-udvidelse udviklet af ClickFix, og dens hovedfunktion er "Helps you find input/select field ID and Name easily".
Udvidelsesskærmbilleder
Download ClickFix for Ontraport-udvidelses-CRX-fil
Download ClickFix for Ontraport-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
| Navn | |
| ID | pemplgddodlclkbejdbfehpphfpcgfcc |
| Officiel URL | https://chromewebstore.google.com/detail/clickfix-for-ontraport/pemplgddodlclkbejdbfehpphfpcgfcc |
| Beskrivelse | Helps you find input/select field ID and Name easily |
| Filstørrelse | 683 KB |
| Antal Installationer | 278 |
| Nuværende Version | 1.0.2 |
| Senest Opdateret | 2019-01-19 |
| Udgivelsesdato | 2019-01-15 |
| Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
| Udvikler | ClickFix |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://clickfix.io |
| Hjælpeside-URL | https://app.clickfix.io/help-center/ |
| Understøttede Sprog | 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"
]
} | |