Initial commit

This commit is contained in:
2025-05-26 00:01:52 +02:00
commit 46b8b8a285
7 changed files with 120 additions and 0 deletions

26
manifest.json Normal file
View File

@@ -0,0 +1,26 @@
{
"manifest_version": 3,
"browser_specific_settings": {
"gecko": {
"id": "taken@mairimashita.org",
"strict_min_version": "58.0"
}
},
"name": "PvPRp bypass",
"version": "1.0",
"description": "Removes the requirement to sub for pack download",
"action": {
"default_popup": "popout.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"content_scripts": [
{
"matches": ["https://pvprp.com/*"],
"js": ["pvprp.js"]
}
]
}