Cornify - Unicorn and rainbow happiness!!!

Cornify - Unicorn and rainbow happiness!!!

Add sparkly unicorns and rainbows to websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "update_url": "http://clients2.google.com/service/update2/crx",
  "version": "1.6.1",
  "default_locale": "en",
  "name": "__MSG_extension_name__",
  "short_name": "__MSG_extension_short_name__",
  "description": "__MSG_extension_description__",
  "icons": {
    "16": "images/cornify_16.png",
    "32": "images/cornify_32.png",
    "48": "images/cornify_48.png",
    "128": "images/cornify_128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "images/cornify_16.png",
      "24": "images/cornify_24.png",
      "32": "images/cornify_32.png"
    },
    "default_title": "__MSG_browser_action_title__"
  },
  "background": {
    "scripts": [
      "bs-fake-sites.js",
      "script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "cornify.js"
      ],
      "run_at": "document_end"
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://*.cornify.com/*"
    ]
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}