manifest.json (480B)
1 { 2 "manifest_version": 2, 3 "name": "messaging", 4 "version": "1.0", 5 "description": "Test messaging between app and web extension", 6 "browser_specific_settings": { 7 "gecko": { 8 "id": "messaging-iframe@tests.mozilla.org" 9 } 10 }, 11 "content_scripts": [ 12 { 13 "matches": ["*://localhost/*"], 14 "js": ["messaging.js"], 15 "all_frames": true 16 } 17 ], 18 "permissions": [ 19 "geckoViewAddons", 20 "nativeMessaging", 21 "nativeMessagingFromContent" 22 ] 23 }