Hunchly 2.0

Hunchly 2.0

Hunchly is a tool to capture and organize online data for your investigations. Requires the Hunchly app (https://www.hunch.ly)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Hunchly 2.0",
  "description": "Hunchly is a tool to capture and organize online data for your investigations. Requires the Hunchly app (https://www.hunch.ly)",
  "version": "2.4.2",
  "icons": {
    "1": "icons/logo1.png",
    "16": "icons/logo16.png",
    "48": "icons/logo48.png",
    "128": "icons/logo128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "js": [
        "browser-polyfill.min.js",
        "content-script/mark.min.js",
        "content-script/mutations.js",
        "content-script/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_icon": "icons/logo.png",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "permissions": [
    "contextMenus",
    "activeTab",
    "pageCapture",
    "tabs",
    "storage",
    "unlimitedStorage",
    "alarms",
    "downloads",
    "nativeMessaging"
  ],
  "host_permissions": [
    "<all_urls>",
    "https://*/*",
    "http://*/*"
  ],
  "commands": {
    "take-note": {
      "suggested_key": {
        "default": "Alt+A",
        "mac": "Alt+A"
      },
      "description": "Take note"
    },
    "capture-page": {
      "suggested_key": {
        "default": "Alt+S",
        "mac": "Alt+S"
      },
      "description": "Capture page"
    },
    "toggle-auto-capture": {
      "suggested_key": {
        "default": "Alt+Q",
        "mac": "Alt+Q"
      },
      "description": "Toggle auto-capture"
    },
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+H",
        "mac": "Alt+H"
      }
    }
  }
}