Skip to content

Instantly share code, notes, and snippets.

@NeelBhatt
Created April 19, 2019 10:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NeelBhatt/c10d9133c28fbec2a6756c41d496fe69 to your computer and use it in GitHub Desktop.
Save NeelBhatt/c10d9133c28fbec2a6756c41d496fe69 to your computer and use it in GitHub Desktop.
manifest.json
{
"name": "Pi MonitR Client",
"version": "1.0",
"description": "Real time Streaming from Raspnerry PI using SignalR",
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/16.png",
"32": "images/32.png",
"48": "images/48.png",
"128": "images/128.png"
}
},
"icons": {
"16": "images/16.png",
"32": "images/32.png",
"48": "images/48.png",
"128": "images/128.png"
},
"permissions": [
"tabs",
"notifications",
"http://*/*"
],
"background": {
"persistent": true,
"scripts": [
"signalr.js","background.js"
]
},
"manifest_version": 2,
"web_accessible_resources": [
"images/*.png"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment