Workbench Enhancer Beta
An extension to add much needed improvements to Salesforce Workbench
Wat is Workbench Enhancer Beta?
Workbench Enhancer Beta is een Chrome-extensie ontwikkeld door Jason Estibeiro, en de belangrijkste functie is "An extension to add much needed improvements to Salesforce Workbench".
Extensie Screenshots
Download het CRX-bestand van de extensie Workbench Enhancer Beta
Download Workbench Enhancer Beta-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
                        Feature list:
 - Records the queries and executed code for future use.
 - Simply reuse previous queries on a single click.
 - Search through the queries.
 - Similarly implemented for Execute page and Search page on Workbench.
Features to be implemented soon:
 - Add syntax highlighting and code completion to textarea in query page as well as execute page.
 - Ability to group or save favourite queries or snippets as a collection.
Made by Akhilesh Bhatia & Jason Estibeiro.
If you are facing any issues, feel free to drop a mail at [email protected] or create an issue on our GitHub page - https://github.com/akhileshbhatia/workbench-enhancer/issues.                     Basisinformatie over de Extensie
| Naam |   |  
| ID | aeildolmfjhmlbbambcaobkjkhppphod | 
| Officiële URL | https://chromewebstore.google.com/detail/workbench-enhancer-beta/aeildolmfjhmlbbambcaobkjkhppphod | 
| Beschrijving | An extension to add much needed improvements to Salesforce Workbench | 
| Bestandsgrootte | 1.85 MB | 
| Aantal Installaties | 726 | 
| Huidige Versie | 0.1.5 | 
| Laatst Bijgewerkt | 2022-08-19 | 
| Publicatiedatum | 2017-04-27 | 
| Beoordeling | 5.00/5 Totaal 2 Beoordelingen | 
| Ontwikkelaar | Jason Estibeiro | 
| [email protected] | |
| Betalingswijze | free | 
| Extensiewebsite | http://jrod.in/ | 
| Help Pagina-URL | http://jrod.in/workbench-enhancer/ | 
| URL van de Privacybeleid Pagina | https://jrod.in/workbench-enhancer/privacy_policy.html | 
| Ondersteunde Talen | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Workbench Enhancer Beta",
    "version": "0.1.5",
    "manifest_version": 2,
    "description": "An extension to add much needed improvements to Salesforce Workbench",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/workbench.developerforce.com\/query.php*",
                "https:\/\/workbench.developerforce.com\/execute.php*",
                "https:\/\/workbench.developerforce.com\/search.php*"
            ],
            "css": [
                "styles\/bootstrap.css",
                "styles\/extension.css"
            ],
            "js": [
                "scripts\/jquery.min.js",
                "scripts\/bootstrap.min.js",
                "scripts\/angular.min.js",
                "scripts\/angular-route.min.js",
                "scripts\/angular-animate.min.js",
                "scripts\/bootstrap-tpls.min.js",
                "js\/init.js",
                "js\/controllers\/all_data_controller.js",
                "js\/controllers\/base_controller.js",
                "js\/directives\/main_extension_dir.js",
                "js\/directives\/text_collapse_dir.js",
                "js\/directives\/toggle_button_dir.js",
                "js\/directives\/toggle_extension_dir.js",
                "js\/directives\/update_model_dir.js",
                "js\/route_config.js",
                "js\/services\/data_service.js"
            ]
        },
        {
            "matches": [
                "https:\/\/workbench.developerforce.com\/login.php*"
            ],
            "css": [
                "styles\/bootstrap_mod.css"
            ],
            "js": [
                "scripts\/jquery.min.js",
                "js\/login.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'none'",
    "web_accessible_resources": [
        "views\/base.html",
        "views\/allData.html",
        "views\/temp.html",
        "fonts\/*",
        "icons\/*"
    ]
}  |  |