manifest.json (400B)
1 { 2 "manifest_version": 2, 3 "name": "messaging", 4 "version": "1.0", 5 "description": "Test messaging between app and web extension", 6 "icons": { 7 "48": "icons/border-48.png" 8 }, 9 "browser_specific_settings": { 10 "gecko": { 11 "id": "messaging@tests.mozilla.org" 12 } 13 }, 14 "background": { 15 "scripts": ["background.js"] 16 }, 17 "permissions": ["geckoViewAddons", "nativeMessaging"] 18 }