T-Rex Outrunner

T-Rex Outrunner

Replaces the new tab page with a custom Chrome disconnected page, inspired by an /r/outrun post.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "T-Rex Outrunner",
  "description": "Replaces the new tab page with a custom Chrome disconnected page, inspired by an /r/outrun post.",
  "version": "1",
  "author": "Michael Hoskins",
  "browser_action": {
    "default_title": "Outrun",
    "default_icon": "assets/icon-24x24.png"
  },
  "icons": {
    "16": "assets/icon-16x16.png",
    "48": "assets/icon-48x48.png",
    "128": "assets/icon-128x128.png"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "permissions": [
    "activeTab"
  ]
}