Examine source code of Query Bench

Inspect and view changes in Query Bench 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
{
  "manifest_version": 2,
  "name": "Query Bench",
  "version": "2.0.3resigned1",
  "description": "Browser Addon to organize and use Search Parameters",
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "<all_urls>"
  ],
  "icons": {
    "48": "/img/qb_48.png",
    "96": "/img/qb_96.png"
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "16": "/img/qb-activation_16.png",
      "19": "/img/qb-activation_19.png",
      "32": "/img/qb-activation_32.png",
      "38": "/img/qb-activation_38.png",
      "64": "/img/qb-activation_64.png"
    },
    "default_title": "Query Bench Activation"
  },
  "web_accessible_resources": [
    "/content.css",
    "/img/cmd-btndefault.png",
    "/img/cmd-btnsingular.png",
    "/img/cmd-hover.png",
    "/img/cmd-Info.png",
    "/img/cmd-link.png",
    "/img/cmd-punctuation.png",
    "/img/cmd-select.png",
    "/img/cmd-settings.png",
    "/img/qb-fading.png",
    "/img/word-sentence-switch-updown.png",
    "/img/lang/de-German.png",
    "/img/lang/en-English.png",
    "/img/lang/es-Spanish.png",
    "/img/lang/fr-French.png",
    "/img/lang/it-Italian.png",
    "/img/lang/pt-Portuguese.png",
    "/img/lang/ru-Russian.png",
    "/img/close-cross.png"
  ],
  "background": {
    "scripts": [
      "/3rdparty/md5.min.js",
      "/3rdparty/json5.js",
      "/3rdparty/purify.min.js",
      "/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.querybench.com/*/mod/*"
      ],
      "js": [
        "/msgqbmod.js"
      ]
    }
  ],
  "options_ui": {
    "page": "/options.html"
  },
  "default_locale": "en",
  "browser_specific_settings": {
    "gecko": {
      "id": "@query-bench"
    }
  }
}