Retool Quick Open
Quickly open Retool links in an existing tab.
Retool Quick Open란 무엇입니까?
Retool Quick Open은(는) retoolquickopen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly open Retool links in an existing tab."입니다.
확장 프로그램 스크린샷
Retool Quick Open 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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": [ " |