Retool Quick Open

Quickly open Retool links in an existing tab.

Co je Retool Quick Open?

Retool Quick Open je rozšíření Chrome vyvinuté retoolquickopen, a jeho hlavní funkcí je „Quickly open Retool links in an existing tab.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Retool Quick Open

Stáhněte si soubory rozšíření Retool Quick Open ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Retool Quick Open Retool Quick Open
ID ceealkjinhcgoihffmapmhdopljdbmco
Oficiální URL https://chromewebstore.google.com/detail/retool-quick-open/ceealkjinhcgoihffmapmhdopljdbmco
Popis Quickly open Retool links in an existing tab.
Velikost souboru 19.42 KB
Počet instalací 100
Aktuální Verze 1.1
Poslední Aktualizace 2023-08-10
Datum Vydání 2023-07-10
Hodnocení 1.00/5 Celkem 1 Hodnocení
Vývojář retoolquickopen
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/tryretool/retool-quickopen-extension
URL Stránky Nápovědy https://github.com/tryretool/retool-quickopen-extension/issues
Podporované Jazyky 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": [
        ""
    ]
}