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文件
下載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 擴展基本資訊
| 名稱 | |
| ID | ceealkjinhcgoihffmapmhdopljdbmco |
| 官方網址 | 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": [
" | |