mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-17 23:08:33 +02:00
add in a runtime example (#304)
* add in a runtime example * updated based on feedback
This commit is contained in:
17
runtime-examples/manifest.json
Normal file
17
runtime-examples/manifest.json
Normal 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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user