flappy birdie (night farm mode)

flappy birdie (night farm mode)

ID: hpkfkbmcphnigepfjmapkdaedglohgjg

Supported Languages

🇧🇷Brazilian Portuguese
🇬🇧British English
🇪🇸Catalan
🇨🇳Chinese (Simplified)
🇹🇼Chinese (Traditional)
🇨🇿Czech
🇩🇰Danish
🇳🇱Dutch
🇺🇸English
🇫🇮Finnish
🇫🇷French
🇩🇪German
🇮🇹Italian
🇯🇵Japanese
🇰🇷Korean
🇲🇽Latin American Spanish
🇱🇻Latvian
🇱🇹Lithuanian
🇳🇴Norwegian
🇵🇱Polish
🇵🇹Portuguese
🇸🇰Slovak
🇸🇮Slovenian
🇪🇸Spanish
🇸🇪Swedish
🇹🇷Turkish
🇺🇸US English

Extension Info & Metadata

Status
Active
Version
1.0.2
Size
0.19 MB
Rating
4.9/5
Reviews
504
Users
30,000
Type
Extension
Updated
Feb 15, 2026
Category
Games
Price
Free
Featured
Yes
Visibility
Listed
Mature
No
By Google
No
Trusted
Yes

Publisher Contextual Analysis

Trusted
Author
micthelldawsen7View Profile
MX records exist
Yes
Domain exists
Yes
Is disposable
No
Is role-based
No
Mailbox exists
Yes
Total Extensions
2
Active
1
Obsolete
1
Listed
2
Unlisted
0
Total Users
80,000
Screenshot 1

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

Experience the nostalgic joy of Flappy Bird, the classic side-scrolling game, right within your Google Chrome browser! Immerse yourself in the familiar gameplay of Flappy Bird as you enjoy the offline version on your desktop for free. Get ready to flap away with Chrome. Travel back in time with this iconic game, where you control the Flappy Bird with a simple click to maneuver through a series of challenging obstacles. What started as a mobile sensation has now found a new life online, allowing you to relive the addictive fun. The gameplay is easy to grasp but hard to master—just tap to make the Flappy Bird ascend while navigating it through a series of pipes. Each round challenges you to beat your previous high score, igniting the competitive spirit within. Embrace the charm and simplicity of Flappy Bird's gameplay all over again, this time through your web browser. The Flappy Bird game invites you to test your skills and determination, now with an exciting twist of a custom night farm mode. Don't miss this opportunity to play the classic game for free—immerse yourself in the world of Flappy Bird now! This cover was created based on a once-popular game. Any similarities or copyright infringements are not permitted.

Item
Type
Severity
Description
*://*/*
Host
Critical
Broad host access — the extension can read/modify content on every website.
Broad Host Permissions
Risk Factor
High
This extension has broad host permissions allowing it to access many or all websites.

game.js is registered as a content script injected into every frame of every page the user visits, despite the extension being a self-contained popup game. There is no legitimate game logic reason for this — the game's DOM targets (player, land, flyarea) only exist inside the popup. This pattern is consistent with a surveillance foothold: the same file that runs the popup game is silently injected into every website the user browses, granting execution context on all pages. A future update to game.js could add data-harvesting code without changing the manifest.

manifest.json (Line 19)
{  "content_scripts": [    {      "js": [        "js/game.js"      ],      "all_frames": true,      "matches": [        "*://*/*"      ]    }  ]}

The same script (game.js) is registered as both the background service worker and a content script. Service workers and content scripts serve fundamentally different roles; sharing a single file across both contexts is architecturally anomalous. Running the game engine as a persistent background worker combined with all-page content script injection gives the extension two independent execution contexts watching all browsing activity, which is a common structure for adware and tracking extensions disguised as games.

manifest.json (Line 16)
{  "background": {    "service_worker": "js/game.js"  },  "content_scripts": [    {      "js": [        "js/game.js"      ],      "all_frames": true,      "matches": [        "*://*/*"      ]    }  ]}

Every file in the extension (including all JavaScript, images, and assets) is declared accessible to any URL on the web. This wildcard resource exposure allows any third-party website to probe the presence and exact file listing of this extension, enabling reliable browser fingerprinting and extension-targeting attacks. Legitimate game extensions need at most a small subset of resources exposed, never a blanket wildcard.

manifest.json (Line 42)
{  "web_accessible_resources": [    {      "matches": [        "<all_urls>"      ],      "resources": [        "*.*"      ]    }  ]}

The share URLs are pre-populated with `via=w3technic` on Twitter and the extension developer's homepage URL across all social platforms (Facebook, Pinterest, WhatsApp, VK, Telegram). Every time a user shares their score, viral attribution is funneled to the developer's social accounts. This is a covert growth-hacking mechanism embedded in a game — the user's social graph is being monetized without disclosure.

js/config.js (Line 12)
let Twitter = "https://twitter.com/intent/tweet/?text=" + encodeURI(shareText) + "&url=" + encodeURI(homePage) +  "&via=w3technic";let sendMail = "mailto:?subject=" + encodeURI(shareText) + "&body=" + encodeURI(homePage);let Pinterest = "https://pinterest.com/pin/create/button/?url=" + encodeURI(homePage) + "&media=" + encodeURI(  homePage) + "&description=" + encodeURI(shareText);let Whatsapp = "whatsapp://send?text=" + encodeURI(shareText) + encodeURI(homePage);let VK = "http://vk.com/share.php?title=" + encodeURI(shareText) + "&url=" + encodeURI(homePage);let Telegram = "https://telegram.me/share/url?text=" + encodeURI(shareText) + "&url=" + encodeURI(homePage);

The internal version reported to Chrome's update system (1.5.3) does not match the display version shown to users (1.0.2). This discrepancy means the extension has silently advanced further than users believe, obscuring its update history and making it harder to correlate published changelogs with the code actually running.

manifest.json (Line 5)
{  "version": "1.5.3",  "version_name": "1.0.2"}

By severity

Critical1
High2
Medium1
Low1

Versions scanned

Showing 1 of 1 scanned version with more than one unique finding. Counts are unique findings that include each version.

Extension VersionCode Review Findings
1.0.25

Files with findings

2 distinct paths — top paths by unique finding count:

  • manifest.json4
  • js/config.js1
S.No.
Category
Severity
File
Summary
Found in Version
1Unauthorized Data Collection
critical
manifest.json (line 19)game.js is registered as a content script injected into every frame of every page the user visits, despite the extension being a self-contained popup game. There is no legitimate game logic reason for this — the game'…
2Tracking
high
manifest.json (line 16)The same script (game.js) is registered as both the background service worker and a content script. Service workers and content scripts serve fundamentally different roles; sharing a single file across both contexts i…
3Tracking
high
manifest.json (line 42)Every file in the extension (including all JavaScript, images, and assets) is declared accessible to any URL on the web. This wildcard resource exposure allows any third-party website to probe the presence and exact f…
4Unauthorized Data Collection
medium
js/config.js (line 12)The share URLs are pre-populated with `via=w3technic` on Twitter and the extension developer's homepage URL across all social platforms (Facebook, Pinterest, WhatsApp, VK, Telegram). Every time a user shares their sco…
5Obfuscation
low
manifest.json (line 5)The internal version reported to Chrome's update system (1.5.3) does not match the display version shown to users (1.0.2). This discrepancy means the extension has silently advanced further than users believe, obscuri…
URLs
17
IPv4
0
IPv6
0

URLs

View the external URLs this extension communicates with to understand its network activity and data interactions.

Gain full insight into all external connections.

Upgrade for full visibility.

cssreset.com-http://cssreset.com
www.w3.org/1999/02/22-rdf-syntax-nshttp://www.w3.org/1999/02/22-rdf-syntax-ns#
ns.adobe.com/xap/1.0/http://ns.adobe.com/xap/1.0/
purl.org/dc/elements/1.1/http://purl.org/dc/elements/1.1/
ns.adobe.com/photoshop/1.0/http://ns.adobe.com/photoshop/1.0/
ns.adobe.com/xap/1.0/mm/http://ns.adobe.com/xap/1.0/mm/
ns.adobe.com/xap/1.0/sType/ResourceEventhttp://ns.adobe.com/xap/1.0/sType/ResourceEvent#
facebook.com/sharer/sharer.phphttps://facebook.com/sharer/sharer.php?u=
twitter.com/intent/tweet/https://twitter.com/intent/tweet/?text=
pinterest.com/pin/create/button/https://pinterest.com/pin/create/button/?url=
Showing 1 to 10 of 20 rows
Rows per page:

Gain full insight into all external connections.

Upgrade for full visibility.

No IP addresses found
Version
Size
Is Malicious
Findings
Permhash
1.0.2
Latest
0.19 MB
Malicious
5N/A
Showing 1 to 1 of 10 rows
Rows per page:

Browse and explore files within this extension package

Gain full insight into all external connections.

Upgrade for full visibility.