Query Bench

Query Bench

Browser Addon to organize and use Search Parameters

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Query Bench",
  "short_name": "qb",
  "version": "3.0.0",
  "description": "Browser Addon to organize and use Search Parameters",
  "content_security_policy": "script-src 'self' blob:; object-src 'self';",
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "<all_urls>"
  ],
  "icons": {
    "48": "/background/img/qb_48.png",
    "96": "/background/img/qb_96.png"
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "16": "/background/img/qb-activation_16.png",
      "19": "/background/img/qb-activation_19.png",
      "32": "/background/img/qb-activation_32.png",
      "38": "/background/img/qb-activation_38.png",
      "64": "/background/img/qb-activation_64.png"
    },
    "default_title": "Query Bench Activation"
  },
  "web_accessible_resources": [
    "/content/cs-dlg-styles.css",
    "/content/img/cmd-btndefault.png",
    "/content/img/cmd-btnsingular.png",
    "/content/img/cmd-hover.png",
    "/content/img/cmd-Info.png",
    "/content/img/cmd-link.png",
    "/content/img/cmd-punctuation.png",
    "/content/img/cmd-select.png",
    "/content/img/cmd-settings.png",
    "/content/img/qb-fading.png",
    "/content/img/word-sentence-switch-updown.png",
    "/common/img/lang/de-German.png",
    "/common/img/lang/en-English.png",
    "/common/img/lang/es-Spanish.png",
    "/common/img/lang/fr-French.png",
    "/common/img/lang/it-Italian.png",
    "/common/img/lang/pt-Portuguese.png",
    "/common/img/lang/ru-Russian.png",
    "/common/img/close-cross.png"
  ],
  "background": {
    "scripts": [
      "/3rdparty/md5.min.js",
      "/3rdparty/purify.min.js",
      "/3rdparty/segment.js",
      "/common/cm-constants.js",
      "/common/cm-utils-divers.js",
      "/common/cm-geometry.js",
      "/common/cm-utils-dom.js",
      "/common/cm-data-handling.js",
      "/common/cm-data-storage.js",
      "/background/bg-utils-divers.js",
      "/background/bg-storevents.js",
      "/background/bg-segment.js",
      "/background/bg-settings.js",
      "/background/bg-apis.js",
      "/background/bg-messages.js",
      "/background/bg-show-results.js",
      "/background/bg-main.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.querybench.com/*/mod/*"
      ],
      "js": [
        "/content/cs-msgqbmod.js"
      ]
    }
  ],
  "options_ui": {
    "page": "/options/op-pnlsettings.html"
  },
  "default_locale": "en"
}