Chromium Review Tool

Chromium Review Tool

Opens all side-by-side diffs in separate tabs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Chromium Review Tool",
  "version": "1.4",
  "manifest_version": 2,
  "description": "Opens all side-by-side diffs in separate tabs.",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "256": "icon.png"
  },
  "permissions": [
    "tabs",
    "*://codereview.chromium.org/*",
    "*://chromiumcodereview.appspot.com/*",
    "*://chromereviews.googleplex.com/*",
    "*://webrtc-codereview.appspot.com/*",
    "*://review.webrtc.org/*"
  ],
  "page_action": {
    "default_icon": "icon.png",
    "default_title": "View all diffs"
  }
}