mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
24 lines
540 B
JSON
24 lines
540 B
JSON
{
|
|
"applications": {
|
|
"gecko": {
|
|
"strict_min_version": "58.0a1"
|
|
}
|
|
},
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
"browser_action": {
|
|
"browser_style": true,
|
|
"default_title": "Tabs, tabs, tabs",
|
|
"default_popup": "tabs.html"
|
|
},
|
|
"description": "A list of methods you can perform on a tab.",
|
|
"homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/tabs-tabs-tabs",
|
|
"manifest_version": 2,
|
|
"name": "Tabs, tabs, tabs",
|
|
"permissions": [
|
|
"tabs"
|
|
],
|
|
"version": "1.0"
|
|
}
|