123456789101112131415161718192021222324 |
- {
- "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"]
- }
|