ClickFix for Ontraport
Helps you find input/select field ID and Name easily
ClickFix for Ontraportคืออะไร?
ClickFix for Ontraport เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ClickFix และคุณลักษณะหลักของมันคือ "Helps you find input/select field ID and Name easily"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ClickFix for Ontraport
ดาวน์โหลดไฟล์ส่วนขยาย ClickFix for Ontraport ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ClickFix for Ontraport |
ID | pemplgddodlclkbejdbfehpphfpcgfcc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/clickfix-for-ontraport/pemplgddodlclkbejdbfehpphfpcgfcc |
คำอธิบาย | Helps you find input/select field ID and Name easily |
ขนาดไฟล์ | 683 KB |
จำนวนการติดตั้ง | 278 |
เวอร์ชันปัจจุบัน | 1.0.2 |
อัปเดตครั้งล่าสุด | 2019-01-19 |
วันที่เผยแพร่ | 2019-01-15 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | ClickFix |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://clickfix.io |
URL หน้าช่วยเหลือ | https://app.clickfix.io/help-center/ |
ภาษาที่รองรับ | 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" ] } |