Created
April 19, 2026 23:08
-
-
Save neogeek/c585c33dea4a6644828824fd636eefc7 to your computer and use it in GitHub Desktop.
architect-exam-prep-chrome-extension
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "manifest_version": 3, | |
| "name": "Architect Exam Prep Chrome Extension", | |
| "version": "1.0", | |
| "description": "Fixing some obnoxious elements on Architect Exam Prep.", | |
| "permissions": ["activeTab"], | |
| "content_scripts": [ | |
| { | |
| "matches": ["https://architectexamprep.com/*"], | |
| "js": ["observer.js"], | |
| "css": ["styles.css"] | |
| } | |
| ] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| document.addEventListener("keydown", (e) => { | |
| if (e.code === "Space") { | |
| e.preventDefault(); | |
| alert("You pressed space."); | |
| } | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| body { | |
| background-color: red; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment