initial commit

This commit is contained in:
Sam
2023-03-26 17:31:42 -04:00
commit e3b5b090fb
51 changed files with 4222 additions and 0 deletions

35
extension/manifest.json Normal file
View File

@@ -0,0 +1,35 @@
{
"description": "Cheetah browser extension",
"manifest_version": 2,
"name": "Cheetah",
"version": "1.0",
"homepage_url": "https://phrack.org",
"icons": {
"48": "icon.png"
},
"content_scripts": [
{
"matches": [
"*://localhost/*",
"https://app.coderpad.io/*"
],
"js": [
"cheetah.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "cheetah@phrack.org",
"strict_min_version": "50.0"
}
},
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"nativeMessaging"
]
}