Retool Quick Open

Quickly open Retool links in an existing tab.

¿Qué es Retool Quick Open?

Retool Quick Open es una extensión de Chrome desarrollada por retoolquickopen, y su función principal es "Quickly open Retool links in an existing tab.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Retool Quick Open

Descarga archivos de extensión Retool Quick Open en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Retool Quick Open Retool Quick Open
ID ceealkjinhcgoihffmapmhdopljdbmco
URL Oficial https://chromewebstore.google.com/detail/retool-quick-open/ceealkjinhcgoihffmapmhdopljdbmco
Descripción Quickly open Retool links in an existing tab.
Tamaño del Archivo 19.42 KB
Cantidad de Instalaciones 100
Versión Actual 1.1
Última Actualización 2023-08-10
Fecha de Publicación 2023-07-10
Calificación 1.00/5 Total de 1 Calificaciones
Desarrollador retoolquickopen
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/tryretool/retool-quickopen-extension
URL de la Página de Ayuda https://github.com/tryretool/retool-quickopen-extension/issues
Idiomas Soportados 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": [
        ""
    ]
}