ClickFix for Ontraport
Helps you find input/select field ID and Name easily
Apa itu ClickFix for Ontraport?
ClickFix for Ontraport adalah ekstensi Chrome yang dikembangkan oleh ClickFix, dan fitur utamanya adalah "Helps you find input/select field ID and Name easily".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi ClickFix for Ontraport
Unduh file ekstensi ClickFix for Ontraport dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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 Informasi Dasar Ekstensi
| Nama | |
| ID | pemplgddodlclkbejdbfehpphfpcgfcc |
| URL Resmi | https://chromewebstore.google.com/detail/clickfix-for-ontraport/pemplgddodlclkbejdbfehpphfpcgfcc |
| Deskripsi | Helps you find input/select field ID and Name easily |
| Ukuran File | 683 KB |
| Jumlah Instalasi | 278 |
| Versi Saat Ini | 1.0.2 |
| Terakhir Diperbarui | 2019-01-19 |
| Tanggal Publikasi | 2019-01-15 |
| Penilaian | 5.00/5 Total 1 Penilaian |
| Pengembang | ClickFix |
| [email protected] | |
| Tipe Pembayaran | free |
| Situs Ekstensi | https://clickfix.io |
| URL Halaman Bantuan | https://app.clickfix.io/help-center/ |
| Bahasa yang Didukung | 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"
]
} | |