ResearchQ

ResearchQ

Tool to provide easier access to research work

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ResearchQ",
  "short_name": "ResearchQ",
  "description": "Tool to provide easier access to research work",
  "version": "1.2.5",
  "minimum_chrome_version": "90",
  "permissions": [
    "contextMenus",
    "tabs",
    "storage",
    "downloads",
    "history"
  ],
  "icons": {
    "16": "assets/icon-color.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "commands": {
    "open-incognito": {
      "suggested_key": {
        "default": "Alt+Q",
        "mac": "Alt+Q"
      },
      "description": "Open current url in incognito window"
    }
  }
}