manifest.json 587 B

123456789101112131415161718192021222324
  1. {
  2. "manifest_version": 2,
  3. "name": "T-Rex Outrunner",
  4. "description": "Replaces the new tab page with a custom Chrome disconnected page, inspired by an /r/outrun post.",
  5. "version": "1",
  6. "author": "Michael Hoskins",
  7. "browser_action": {
  8. "default_title": "Outrun",
  9. "default_icon": "assets/icon-24x24.png"
  10. },
  11. "icons": {
  12. "16": "assets/icon-16x16.png",
  13. "48": "assets/icon-48x48.png",
  14. "128": "assets/icon-128x128.png"
  15. },
  16. "chrome_url_overrides" : {
  17. "newtab": "index.html"
  18. },
  19. "permissions": ["activeTab"]
  20. }