Files
cheetah/extension/manifest.json
leetcode-mafia 405482a207 Update README.md
2023-04-04 22:23:19 -04:00

34 lines
692 B
JSON

{
"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/*"
],
"js": [
"cheetah.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "cheetah@phrack.org",
"strict_min_version": "50.0"
}
},
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"nativeMessaging"
]
}