Examine source code of Faster PR

Inspect and view changes in Faster PR source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Faster PR",
  "description": "Personalize and copy a branch name, commit message, or pull request description (compatible with GitHub/GitLab/Trello/Jira/Monday).",
  "version": "0.0.0.10",
  "browser_specific_settings": {
    "gecko": {
      "id": "faster-pull-request-gotestingspace@gmail.com"
    }
  },
  "icons": {
    "128": "128.png"
  },
  "permissions": [],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "scripts": [
      "service-worker.js"
    ]
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_title": "View settings on enabled page of plugin",
    "default_area": "navbar"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js",
        "config.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ]
}