snowflake/proxy/webext/manifest.json
David Fifield 6ab50e32b9 Toolbar icons that work in both light and dark modes.
https://bugs.torproject.org/31170#comment:8

I chose these icons for the "on" and "off" icons:
toolbar_icon_purple.svg → toolbar-on.svg
toolbar_icon_grey.svg → toolbar-off.svg

I then made toolbar-running.svg by copying toolbar-off.svg and changing
the stroke and fill from #4A4A4F to #40E0D0.
2019-08-19 12:24:09 -06:00

20 lines
450 B
JSON

{
"manifest_version": 2,
"name": "Snowflake",
"version": "0.0.9",
"description": "__MSG_appDesc__",
"default_locale": "en_US",
"background": {
"scripts": ["snowflake.js"],
"persistent": true
},
"browser_action": {
"default_icon": {
"48": "assets/toolbar-on-48.png",
"96": "assets/toolbar-on-96.png"
},
"default_title": "Snowflake",
"default_popup": "embed.html"
},
"permissions": ["storage"]
}