Flappy Bird Offline. Desktop Version

Flappy Bird Offline. Desktop Version

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

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.8",
  "action": {
    "default_icon": {
      "16": "icons/16.png",
      "48": "icons/48.png",
      "128": "icons/128.png",
      "256": "icons/256.png"
    },
    "default_title": "Click to open Flappy Bird popup",
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "scripts/bg.js"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "all_frames": true,
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "offline_enabled": true,
  "default_locale": "en",
  "description": "__MSG_AppDesc__",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png",
    "256": "icons/256.png"
  },
  "permissions": [
    "storage",
    "alarms",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "*.*"
      ]
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "options_page": "index.html"
}