Examine source code of ReviewRaccoon

Inspect and view changes in ReviewRaccoon 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
{
  "name": "ReviewRaccoon",
  "version": "0.73",
  "description": "This extension will detect and show you moved lines of code on GitHub Pull Requests",
  "permissions": [
    "https://reviewraccoon.com/*",
    "https://github.com/*/pull/*",
    "https://github.com/*/commit/*",
    "https://patch-diff.githubusercontent.com/raw/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/raccoon_16.png",
      "32": "images/raccoon_32.png",
      "48": "images/raccoon_48.png",
      "128": "images/raccoon_128.png"
    }
  },
  "icons": {
    "16": "images/raccoon_16.png",
    "32": "images/raccoon_32.png",
    "48": "images/raccoon_48.png",
    "128": "images/raccoon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "diff_match_patch.js",
        "fuzzyset.js",
        "contentScript.js"
      ]
    }
  ],
  "manifest_version": 2
}