Created
January 6, 2024 04:55
-
-
Save DavidKlempfner/69d3df3ccd7b68286683c77218b3f278 to your computer and use it in GitHub Desktop.
AttackersChromeExtensionManifest
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": "Attacker's Chrome Extension", | |
"description": "Updates the request with the authorization code from the victim", | |
"version": "1.0", | |
"background": { | |
"service_worker": "background.js" | |
}, | |
"host_permissions": [ | |
"<all_urls>" | |
], | |
"permissions": [ | |
"webRequest", | |
"tabs" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment