Superhot 2D
Shoot some cubes, but with a twist!
What is Superhot 2D?
Superhot 2D is a Chrome extension developed by Etai Gabbai, and its main feature is "Shoot some cubes, but with a twist!".
Extension Screenshots
Download Superhot 2D Extension CRX File
Download Superhot 2D extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Based off of the 3D game, superhot, this is a 2D version that opens in a pop-up. It's a fun and simple 2D game, but with a twist - slow down the speed of gravity and dodge the bullets. V1.0 -Published Game Original code: https://codepen.io/iph03nix/pen/vPBbwY - Made by Benjamin Miles Converted to a Chrome Extension by Etai Gabbai.
Extension Basic Information
Name | Superhot 2D |
ID | eembpicfcpfkppajkfkeencgfakmjckm |
Official URL | https://chromewebstore.google.com/detail/superhot-2d/eembpicfcpfkppajkfkeencgfakmjckm |
Description | Shoot some cubes, but with a twist! |
File Size | 268 KB |
Installation Count | 424 |
Current Version | 1.0 |
Last Updated | 2022-02-04 |
Publish Date | 2022-02-04 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Etai Gabbai |
[email protected] | |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Superhot 2D", "description": "Shoot some cubes, but with a twist!", "version": "1.0", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/superhot16.png", "32": "\/images\/superhot32.png", "48": "\/images\/superhot48.png", "128": "\/images\/superhot128.png" } }, "icons": { "16": "\/images\/superhot16.png", "32": "\/images\/superhot32.png", "48": "\/images\/superhot48.png", "128": "\/images\/superhot128.png" } } |