Frog Start - Because cats are lame

Frog Start - Because cats are lame

This extension overrides the new tag with a funny frog - because cats are lame.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Frog Start - Because cats are lame",
  "short_name": "Frog Start",
  "description": "__MSG_manifest_description__",
  "default_locale": "en",
  "homepage_url": "http://rolandschuetz.at/",
  "version": "1.0.2",
  "manifest_version": 2,
  "icons": {
    "16": "img/icons/start-16.png",
    "32": "img/icons/start-32.png",
    "48": "img/icons/start-48.png",
    "128": "img/icons/start-128.png"
  },
  "permissions": [],
  "browser_action": {
    "default_icon": "img/icons/start-128.png",
    "default_title": "__MSG_manifest_browser_action__"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://ssl.google-analytics.com; object-src 'self'",
  "web_accessible_resources": [
    "*://*/*",
    "*.png",
    "*.jpg",
    "*.gif"
  ]
}