1
Fork 0
mirror of https://github.com/Steffo99/chakra-magic.git synced 2024-10-16 14:37:28 +00:00
chakra-magic/extension/manifest.json

42 lines
904 B
JSON
Raw Normal View History

2019-09-29 14:15:23 +00:00
{
"manifest_version": 2,
"applications": {
"gecko": {
"id": "chakramagic@steffo.eu"
}
},
"name": "Chakra Magic",
2019-09-30 08:09:01 +00:00
"version": "2019.9.30.2",
2019-09-29 14:15:23 +00:00
"developer": {
"name": "Stefano Pigozzi",
2019-09-30 07:59:21 +00:00
"url": "https://github.com/Steffo99/chakra-magic"
2019-09-29 14:15:23 +00:00
},
"description": "Display which games you were reported and commended in!",
2019-09-29 14:35:05 +00:00
"background": {
"scripts": ["background.js"]
},
2019-09-29 14:15:23 +00:00
"content_scripts": [
{
"matches": ["https://steamcommunity.com/*/gcpd/570?category=Account&tab=MatchPlayerReportIncoming"],
"js": ["gdpr_page.js"],
"css": ["gdpr_page.css"]
}
],
"icons": {
"128": "icon128.png"
2019-09-29 14:35:05 +00:00
},
"browser_action": {
"default_icon": {
"128": "icon128.png"
},
"default_title": "Open reports/commends page"
2019-09-29 14:15:23 +00:00
}
2019-09-29 14:35:05 +00:00
}