mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
29 lines
486 B
JSON
29 lines
486 B
JSON
{
|
|
|
|
"description": "Native messaging example add-on",
|
|
"manifest_version": 2,
|
|
"name": "Native messaging example",
|
|
"version": "1.0",
|
|
"icons": {
|
|
"48": "icons/message.svg"
|
|
},
|
|
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "ping_pong@example.org",
|
|
"strict_min_version": "50.0"
|
|
}
|
|
},
|
|
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
|
|
"browser_action": {
|
|
"default_icon": "icons/message.svg"
|
|
},
|
|
|
|
"permissions": ["nativeMessaging"]
|
|
|
|
}
|