This Is Fine

This Is Fine

Temporarily overlays a random number of "This is Fine" memes of random sizes at random locations on the current page for pure chaos

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "res/this-is-fine-logo.png",
    "default_title": "This Is Fine!"
  },
  "commands": {
    "_execute_browser_action": {
      "description": "Fades in a random number of \"This is Fine\" memes to overlay the page elements"
    }
  },
  "content_security_policy": "script-src 'self' https://example.com; object-src 'self'",
  "description": "Temporarily overlays a random number of \"This is Fine\" memes of random sizes at random locations on the current page for pure chaos",
  "icons": {
    "16": "res/this-is-fine-icon-16.png",
    "32": "res/this-is-fine-icon-32.png",
    "48": "res/this-is-fine-icon-48.png",
    "128": "res/this-is-fine-icon-128.png"
  },
  "manifest_version": 2,
  "name": "This Is Fine",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "version": "1.4.1",
  "web_accessible_resources": [
    "res/this-is-fine-1.png",
    "res/this-is-fine-2.png"
  ]
}