Retool Quick Open

Quickly open Retool links in an existing tab.

Co to jest Retool Quick Open?

Retool Quick Open to rozszerzenie Chrome opracowane przez retoolquickopen, a jego główną funkcją jest „Quickly open Retool links in an existing tab.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Retool Quick Open

Pobierz pliki rozszerzeń Retool Quick Open w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Retool Quick Open Retool Quick Open
ID ceealkjinhcgoihffmapmhdopljdbmco
Oficjalny URL https://chromewebstore.google.com/detail/retool-quick-open/ceealkjinhcgoihffmapmhdopljdbmco
Opis Quickly open Retool links in an existing tab.
Rozmiar pliku 19.42 KB
Liczba instalacji 100
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2023-08-10
Data Publikacji 2023-07-10
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper retoolquickopen
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/tryretool/retool-quickopen-extension
Adres URL Strony Pomocy https://github.com/tryretool/retool-quickopen-extension/issues
Obsługiwane Języki 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": [
        ""
    ]
}