ClickFix for Ontraport
Helps you find input/select field ID and Name easily
什麼是ClickFix for Ontraport?
ClickFix for Ontraport是由ClickFix開發的Chrome擴展程式,該擴展的主要功能是“Helps you find input/select field ID and Name easily”。
擴展截圖
下載ClickFix for Ontraport擴展crx文件
下載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 |
官方網址 | 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" ] } |