Retool Quick Open
Quickly open Retool links in an existing tab.
Retool Quick Openとは何ですか?
Retool Quick Openはretoolquickopenによって開発されたChromeの拡張機能で、その主な機能は「Quickly open Retool links in an existing tab.」です。
拡張機能のスクリーンショット
Retool Quick Open拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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": [ " |