Workbench Extension

Add functionalities to Workbench!

O que é Workbench Extension?

Workbench Extension é uma extensão do Chrome desenvolvida por Baptiste BIEBER, e sua principal característica é "Add functionalities to Workbench!".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Workbench Extension

Baixe arquivos de extensão Workbench Extension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Some new functionalities form the Salesforce Workbench application (https://workbench.developerforce.com/):
- Resize the window
- Query page: checkbox for fields selection. Paste a request, click "Refresh" => that fill the form. Searching filter. Download displayed result (JSON & CSV)
- Execute page: saving scripts to load easier later.

2023-05-04 (v1.5.1):
- Remove cookies & tabs permissions

2018-10-30 (v1.5.0):
Functionality:
- Save script into the Execute page

2018-10-26 (v1.4.0):
Functionality:
- Download the result displayed on the page. Two format: JSON & CSV
Bug:
- After query, field not displayed.                    

Informações Básicas da Extensão

Nome Workbench Extension Workbench Extension
ID bdmeigkhhgcjckkgiiipehdagjdlkddj
URL Oficial https://chromewebstore.google.com/detail/workbench-extension/bdmeigkhhgcjckkgiiipehdagjdlkddj
Descrição Add functionalities to Workbench!
Tamanho do Arquivo 196 KB
Contagem de Instalações 155
Versão Atual 1.5.1
Última Atualização 2023-05-06
Data de Publicação 2018-10-30
Desenvolvedor Baptiste BIEBER
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/baptistebieber/workbench-extension
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Workbench Extension",
    "version": "1.5.1",
    "author": "Baptiste BIEBER",
    "description": "Add functionalities to Workbench!",
    "homepage_url": "https:\/\/github.com\/baptistebieber\/workbench-extension",
    "icons": {
        "16": "img\/icon-16.png",
        "32": "img\/icon-32.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "action": {
        "default_icon": "img\/icon-16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/workbench.developerforce.com\/*"
            ],
            "js": [
                "js\/jquery.min.js"
            ],
            "css": [
                "css\/style.css"
            ]
        },
        {
            "matches": [
                "https:\/\/workbench.developerforce.com\/query.php*"
            ],
            "js": [
                "js\/query.js"
            ],
            "css": [
                "css\/query.css"
            ]
        },
        {
            "matches": [
                "https:\/\/workbench.developerforce.com\/execute.php*"
            ],
            "js": [
                "js\/execute.js"
            ],
            "css": [
                "css\/execute.css"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/workbench.developerforce.com\/*"
    ]
}