Retool Quick Open
Quickly open Retool links in an existing tab.
O que é Retool Quick Open?
Retool Quick Open é uma extensão do Chrome desenvolvida por retoolquickopen, e sua principal característica é "Quickly open Retool links in an existing tab.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Retool Quick Open
Baixe arquivos de extensão Retool Quick Open no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Retool Quick Open |
ID | ceealkjinhcgoihffmapmhdopljdbmco |
URL Oficial | https://chromewebstore.google.com/detail/retool-quick-open/ceealkjinhcgoihffmapmhdopljdbmco |
Descrição | Quickly open Retool links in an existing tab. |
Tamanho do Arquivo | 19.42 KB |
Contagem de Instalações | 100 |
Versão Atual | 1.1 |
Última Atualização | 2023-08-10 |
Data de Publicação | 2023-07-10 |
Classificação | 1.00/5 Total de 1 Avaliações |
Desenvolvedor | retoolquickopen |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/tryretool/retool-quickopen-extension |
URL da Página de Ajuda | https://github.com/tryretool/retool-quickopen-extension/issues |
Idiomas Suportados | 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": [ " |