New Tab Chrome Experiments

New Tab Chrome Experiments

A new Chrome Experiment each time you open a new tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "New Tab Chrome Experiments",
  "short_name": "NTCE",
  "manifest_version": 2,
  "description": "A new Chrome Experiment each time you open a new tab",
  "version": "1.2",
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "background": {
    "page": "background.html"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "minimum_chrome_version": "29",
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "web_accessible_resources": [
    "images/*",
    "*.html"
  ]
}