1
Fork 0
mirror of https://github.com/Steffo99/tidebringer-firefox.git synced 2025-01-05 05:29:46 +00:00
tidebringer-firefox/extension/manifest.json

35 lines
804 B
JSON

{
"manifest_version": 2,
"applications": {
"gecko": {
"id": "tidebringer@steffo.eu"
}
},
"name": "Tidebringer",
"version": "2022.7.22.3",
"version_name": "2022-07-22",
"developer": {
"name": "Stefano Pigozzi",
"url": "https://github.com/Steffo99/tidebringer-firefox"
},
"description": "Add a 'Add all subscribed elements to collection' button to Steam Workshop pages.",
"background": {
"scripts": []
},
"content_scripts": [
{
"matches": ["https://steamcommunity.com/sharedfiles/managecollection/*"],
"js": ["add_items_to_collection.js"],
"css": ["add_items_to_collection.css"]
}
],
"icons": {
"128": "tidebringer.png"
}
}