Retool Quick Open
Quickly open Retool links in an existing tab.
Hvad er Retool Quick Open?
Retool Quick Open er en Chrome-udvidelse udviklet af retoolquickopen, og dens hovedfunktion er "Quickly open Retool links in an existing tab.".
Udvidelsesskærmbilleder
Download Retool Quick Open-udvidelses-CRX-fil
Download Retool Quick Open-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Retool Quick Open |
ID | ceealkjinhcgoihffmapmhdopljdbmco |
Officiel URL | https://chromewebstore.google.com/detail/retool-quick-open/ceealkjinhcgoihffmapmhdopljdbmco |
Beskrivelse | Quickly open Retool links in an existing tab. |
Filstørrelse | 19.42 KB |
Antal Installationer | 100 |
Nuværende Version | 1.1 |
Senest Opdateret | 2023-08-10 |
Udgivelsesdato | 2023-07-10 |
Bedømmelse | 1.00/5 Samlet 1 Bedømmelser |
Udvikler | retoolquickopen |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/tryretool/retool-quickopen-extension |
Hjælpeside-URL | https://github.com/tryretool/retool-quickopen-extension/issues |
Understøttede Sprog | 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": [ " |