manifest.json (310B)
1 { 2 "manifest_version": 2, 3 "name": "Notification test", 4 "version": "1.0", 5 "description": "Send a notification.", 6 "browser_specific_settings": { 7 "gecko": { 8 "id": "notification@example.com" 9 } 10 }, 11 "background": { 12 "scripts": ["background.js"] 13 }, 14 "permissions": ["notifications"] 15 }