Testing Taxi Assistant

Testing Taxi Assistant

QA/Testing assistant sidebar for Chrome. Go deeper. Get more done.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Testing Taxi Assistant",
  "description": "QA/Testing assistant sidebar for Chrome. Go deeper. Get more done.",
  "version": "1.22",
  "devtools_page": "taxi_devtools.html",
  "action": {
    "default_icon": "images/icon-1024.png"
  },
  "background": {
    "service_worker": "scripts/serviceWorker.js",
    "type": "module"
  },
  "side_panel": {
    "default_path": "sidepanel.html"
  },
  "commands": {
    "openSidebar": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "Command+Shift+F"
      },
      "description": "Open the Taxi sidebar or inject content into the current input"
    }
  },
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "permissions": [
    "storage",
    "sidePanel",
    "activeTab",
    "contextMenus",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/content2.js"
      ],
      "run_at": "document_end",
      "all_frames": false,
      "match_about_blank": false,
      "match_origin_as_fallback": false,
      "world": "ISOLATED"
    }
  ]
}