Retool Quick Open

Quickly open Retool links in an existing tab.

Retool Quick Open क्या है?

Retool Quick Open retoolquickopen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Quickly open Retool links in an existing tab."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Retool Quick Open एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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": [
        ""
    ]
}