{
  "manifest_version": 3,
  "name": "GitHub PR Navigator",
  "version": "1.0.0",
  "description": "Easily navigate between sequentially numbered GitHub Pull Requests",
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": ["https://github.com/*/*/pull/*"],
      "js": ["content.js"],
      "css": ["styles.css"]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "GitHub PR Navigator"
  },
  "shortcuts": [
    {
      "name": "Navigate to Previous PR",
      "description": "Go to the previous pull request in sequence",
      "key": "Ctrl+Alt+Left"
    },
    {
      "name": "Navigate to Next PR",
      "description": "Go to the next pull request in sequence",
      "key": "Ctrl+Alt+Right"
    }
  ]
}

