mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
30 lines
606 B
JSON
30 lines
606 B
JSON
{
|
|
"description": "Find across all your tabs",
|
|
"homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/find-across-tabs",
|
|
"manifest_version": 2,
|
|
"name": "Find across tabs",
|
|
"permissions": [
|
|
"find",
|
|
"tabs"
|
|
],
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
"icons": {
|
|
"32": "find.svg"
|
|
},
|
|
"browser_action": {
|
|
"browser_style": true,
|
|
"default_title": "Find across tabs",
|
|
"default_icon": {
|
|
"32": "find.svg"
|
|
}
|
|
},
|
|
"version": "1.0",
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"strict_min_version": "57.0a1"
|
|
}
|
|
}
|
|
}
|