snowflake/proxy/webext/manifest.json
Cecylia Bocovich 2cd69f6f25 Save webextension toggle state
Save whether the snowflake extension is currently enabled in local
storage so that users do not need to opt-in again every time the browser
is restarted
2019-07-04 17:01:27 -04:00

18 lines
358 B
JSON

{
"manifest_version": 2,
"name": "Snowflake",
"version": "0.0.1",
"description": "Snowflake ...",
"background": {
"scripts": ["snowflake.js"],
"persistent": true
},
"browser_action": {
"default_icon": {
"32": "icons/status-off.png"
},
"default_title": "Snowflake",
"default_popup": "popup.html"
},
"permissions": ["storage"]
}