Specific – Capture user feedback

Specific – Capture user feedback

The easiest way to capture feedback. Just select the text and categorise it right away.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Specific – Capture user feedback",
  "short_name": "Specific",
  "version": "1.3.7",
  "manifest_version": 3,
  "description": "The easiest way to capture feedback. Just select the text and categorise it right away.",
  "background": {
    "service_worker": "service-worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://localhost:3100/chrome-extension",
        "https://accounts.specific.app/chrome-extension",
        "https://accounts.staging.specific.ninja/chrome-extension"
      ],
      "js": [
        "accounts-inject-script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "chromeos": "Ctrl+Shift+S",
        "linux": "Ctrl+Shift+S",
        "mac": "Command+Shift+S",
        "windows": "Ctrl+Shift+S"
      }
    }
  },
  "permissions": [
    "storage",
    "scripting",
    "activeTab"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/16x.png",
      "32": "icons/32x.png",
      "48": "icons/48x.png",
      "128": "icons/128x.png"
    }
  },
  "icons": {
    "16": "icons/16x.png",
    "32": "icons/32x.png",
    "48": "icons/48x.png",
    "128": "icons/128x.png"
  }
}