Workbench Tools for Google Chrome™

Google Chrome™ extension for logging into Workbench from an active Salesforce session.

Workbench Tools for Google Chrome™ क्या है?

Workbench Tools for Google Chrome™ Christophe Vidal द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Google Chrome™ extension for logging into Workbench from an active Salesforce session."।

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

screenshot
screenshot
screenshot

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

crx प्रारूप में Workbench Tools for Google Chrome™ एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Extension to log you into the Salesforce Workbench in one click from Google Chrome or Brave. This is *NOT* the Workbench itself.

For information on how to install the Workbench, please refer to the Github repository (which is now in maintenance only mode) https://github.com/forceworkbench/forceworkbench

Once you have installed the Workbench locally, for the extension to work, you have to set the base URL of the Workbench by clicking on "options" like shown on the Screenshot.

If you want to browse the source code, or log issues, or simply star the repository, please come here https://github.com/Krisa/Salesforce-Workbench                    

एक्सटेंशन की मूल जानकारी

नाम Workbench Tools for Google Chrome™ Workbench Tools for Google Chrome™
ID nanhambbggdgkloeldahjngdmngjgmhk
आधिकारिक URL https://chromewebstore.google.com/detail/workbench-tools-for-googl/nanhambbggdgkloeldahjngdmngjgmhk
विवरण Google Chrome™ extension for logging into Workbench from an active Salesforce session.
फ़ाइल का आकार 29.12 KB
स्थापना संख्या 4,826
वर्तमान संस्करण 1.4.0
अंतिम अपडेट 2023-01-25
प्रकाशन तिथि 2018-07-12
रेटिंग 3.21/5 कुल 14 रेटिंग्स
डेवलपर Christophe Vidal
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Krisa/Salesforce-Workbench
सहायता पृष्ठ URL https://github.com/Krisa/Salesforce-Workbench
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Workbench Tools for Google Chrome\u2122",
    "description": "Google Chrome\u2122 extension for logging into Workbench from an active Salesforce session.",
    "version": "1.4.0",
    "background": {
        "service_worker": "background.js"
    },
    "manifest_version": 3,
    "icons": {
        "48": "workbench-3-black-cube-48x48.png",
        "128": "workbench-3-cube-128x128.png"
    },
    "options_page": "options.html",
    "permissions": [
        "cookies",
        "declarativeContent",
        "notifications",
        "scripting",
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/*.salesforce.com\/*",
        "https:\/\/*.force.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.force.com\/*"
            ],
            "js": [
                "showPageAction.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "action": {
        "default_title": "Login to Workbench from Salesforce",
        "default_icon": "workbench-3-black-cube-48x48.png"
    }
}