add in a runtime example (#304)

* add in a runtime example

* updated based on feedback
This commit is contained in:
Andy McKay
2017-11-01 13:36:36 -07:00
committed by wbamberg
parent 37cb9f7a84
commit 0fad0c9a4c
4 changed files with 48 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{
"browser_action": {
"default_icon": "run.png"
},
"description": "Demonstration of some runtime APIs",
"homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/runtime-examples",
"manifest_version": 2,
"name": "Runtime examples",
"version": "1.0",
"permissions": ["notifications"],
"background": {
"scripts": ["background.js"]
},
"icons": {
"128": "run.png"
}
}