Files
BetterYGG/manifest.json
√(noham)² 8e1d4e8fa8 Remove premium and promo elements from YggTorrent UI
Adds logic to remove 'Compte Actif' premium status, download limits, Turbo promotion, and 'Bonus Go & Freeleech' links
2025-12-23 23:49:03 +01:00

53 lines
1.5 KiB
JSON

{
"name": "BetterYGG",
"version": "1.3.0",
"description": "Téléchargez des torrents sur YGG sans ètre connecté et autres !!!",
"icons": {
"16": "img/flexgg16.png",
"24": "img/flexgg24.png",
"32": "img/flexgg32.png",
"48": "img/flexgg48.png",
"64": "img/flexgg64.png",
"128": "img/flexgg128.png"
},
"options_page": "options/options.html",
"background": {
"service_worker": "backgroundScripts/background.js"
},
"permissions": [
"activeTab",
"storage"
],
"web_accessible_resources" : [
{
"resources": [
"contentScripts/addTorrent/accessAddTorrent.js",
"contentScripts/allPages/accessAllPages.js",
"contentScripts/search/accessSearch.js",
"css/style.css",
"img/download.png"
],
"matches": ["https://*.yggtorrent.org/*"]
}
],
"content_scripts": [
{
"matches": ["https://*.yggtorrent.org/torrent/*"],
"run_at": "document_idle",
"js": ["js/utilsFunctions.js", "contentScripts/addTorrent/addTorrent.js"]
},
{
"matches": ["https://*.yggtorrent.org/*"],
"run_at": "document_idle",
"js": ["js/utilsFunctions.js", "contentScripts/allPages/allPages.js"]
},
{
"matches": ["https://*.yggtorrent.org/engine/search*"],
"run_at": "document_idle",
"js": ["js/utilsFunctions.js", "contentScripts/search/search.js"]
}
],
"manifest_version": 3
}