steam-game-deleter/manifest.json

32 lines
697 B
JSON
Raw Permalink Normal View History

2024-06-26 13:05:30 +02:00
{
"manifest_version": 2,
"name": "Steam Game Delete",
"description": "Deletes Free Steam games from library",
"version": "0.0.1",
"icons": {
"128": "icons/icon.png"
},
"permissions": [
"tabs",
"https://store.steampowered.com/account/licenses/"
],
"background": {
"scripts": ["parsers.js", "background.js"]
},
"browser_specific_settings": {
"gecko": {
"id": "steam-games-delete@scode.ovh"
}
},
"content_scripts": [
{
"matches": ["https://store.steampowered.com/account/licenses/"],
"js": ["site_script.js"]
}
],
"browser_action": {
"default_icon": "icons/icon.png",
"default_title": "Steam Game Deleter"
}
}