Flappy Bird (Night farm mode)

Flappy Bird (Night farm mode)

The classic Flappy Bird game offline version on your Google Chrome! Free online Flappy Bird play on Desktop.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_AppName__",
  "version": "1.5.2",
  "version_name": "1.5.2",
  "action": {
    "default_icon": {
      "16": "img/16.png",
      "48": "img/48.png",
      "128": "img/128.png"
    },
    "default_title": "Click to open Flappy Bird popup",
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "js/game.js"
  },
  "content_scripts": [
    {
      "js": [
        "js/game.js"
      ],
      "all_frames": true,
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "offline_enabled": true,
  "default_locale": "en",
  "description": "__MSG_AppDesc__",
  "icons": {
    "16": "img/16.png",
    "48": "img/48.png",
    "128": "img/128.png"
  },
  "permissions": [],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "*.*"
      ]
    }
  ],
  "options_page": "index.html"
}