Retool Quick Open
Quickly open Retool links in an existing tab.
Τι είναι το Retool Quick Open;
Το Retool Quick Open είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον retoolquickopen, και η κύρια λειτουργία του είναι "Quickly open Retool links in an existing tab.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Retool Quick Open
Λήψη αρχείων επέκτασης Retool Quick Open σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | Retool Quick Open |
ID | ceealkjinhcgoihffmapmhdopljdbmco |
Επίσημο URL | https://chromewebstore.google.com/detail/retool-quick-open/ceealkjinhcgoihffmapmhdopljdbmco |
Περιγραφή | Quickly open Retool links in an existing tab. |
Μέγεθος Αρχείου | 19.42 KB |
Αριθμός Εγκαταστάσεων | 100 |
Τρέχουσα Έκδοση | 1.1 |
Τελευταία Ενημέρωση | 2023-08-10 |
Ημερομηνία Δημοσίευσης | 2023-07-10 |
Αξιολόγηση | 1.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | retoolquickopen |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/tryretool/retool-quickopen-extension |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/tryretool/retool-quickopen-extension/issues |
Υποστηριζόμενες Γλώσσες | 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": [ " |