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.”。

扩展截图

screenshot

下载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                    

扩展基本信息

名称 Retool Quick Open 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": [
        ""
    ]
}