Examine source code of Workbench Enhancer Beta

Inspect and view changes in Workbench Enhancer Beta source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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/*"
  ]
}