initial commit
This commit is contained in:
35
extension/manifest.json
Normal file
35
extension/manifest.json
Normal 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"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user