Retool Quick Open
Quickly open Retool links in an existing tab.
Retool Quick Open là gì?
Retool Quick Open là một tiện ích mở rộng Chrome được phát triển bởi retoolquickopen, và tính năng chính của nó là "Quickly open Retool links in an existing tab.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Retool Quick Open
Tải xuống các tệp mở rộng Retool Quick Open dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Retool Quick Open |
ID | ceealkjinhcgoihffmapmhdopljdbmco |
URL Chính Thức | https://chromewebstore.google.com/detail/retool-quick-open/ceealkjinhcgoihffmapmhdopljdbmco |
Mô tả | Quickly open Retool links in an existing tab. |
Kích Thước Tệp | 19.42 KB |
Số Lần Cài Đặt | 100 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2023-08-10 |
Ngày Phát Hành | 2023-07-10 |
Đánh Giá | 1.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | retoolquickopen |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/tryretool/retool-quickopen-extension |
URL Trang Trợ Giúp | https://github.com/tryretool/retool-quickopen-extension/issues |
Ngôn Ngữ Được Hỗ Trợ | 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": [ " |