32 lines
697 B
JSON
32 lines
697 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|