Files
Andy McKay 0fad0c9a4c add in a runtime example (#304)
* add in a runtime example

* updated based on feedback
2017-11-01 13:36:36 -07:00

18 lines
417 B
JSON

{
"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"
}
}