Retool Quick Open
Quickly open Retool links in an existing tab.
Retool Quick Openคืออะไร?
Retool Quick Open เป็นส่วนขยายของ Chrome ที่พัฒนาโดย retoolquickopen และคุณลักษณะหลักของมันคือ "Quickly open Retool links in an existing tab."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Retool Quick Open
ดาวน์โหลดไฟล์ส่วนขยาย Retool Quick Open ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Improves Retool load times by enabling tab re-use. Open Retool links in an already open Retool tab instead of opening a new tab. This extension locally scans whatever tool your customers are using like Zendesk or Salesforce. The default behavior scans for a link that looks like ``. It only re-directs if host and path match an existing open tab. This is easy to customize. Please open issues/PRs on the github repo for feature requests. Source code: https://github.com/tryretool/retool-quickopen-extension
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Retool Quick Open |
ID | ceealkjinhcgoihffmapmhdopljdbmco |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/retool-quick-open/ceealkjinhcgoihffmapmhdopljdbmco |
คำอธิบาย | Quickly open Retool links in an existing tab. |
ขนาดไฟล์ | 19.42 KB |
จำนวนการติดตั้ง | 100 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2023-08-10 |
วันที่เผยแพร่ | 2023-07-10 |
คะแนน | 1.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | retoolquickopen |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/tryretool/retool-quickopen-extension |
URL หน้าช่วยเหลือ | https://github.com/tryretool/retool-quickopen-extension/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Retool Quick Open", "description": "Quickly open Retool links in an existing tab.", "version": "1.1", "action": { "default_popup": "popup.html", "default_icon": "icons\/retool-logo.png" }, "icons": { "16": "icons\/retool-logo-16.png", "48": "icons\/retool-logo-48.png", "128": "icons\/retool-logo-128.png" }, "background": { "service_worker": "dist\/service-worker.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "dist\/content-script.js" ], "all_frames": true } ], "permissions": [ "tabs" ], "host_permissions": [ " |