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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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": [ " |