MobileChromeApps / mobile-chrome-apps

Chrome apps on Android and iOS
BSD 3-Clause "New" or "Revised" License
2.5k stars 347 forks source link

No background scripts found in your manifest.json file #613

Open girishbr opened 7 years ago

girishbr commented 7 years ago

This is my manifest. It's got the event.js in background.scripts array.

{ "manifest_version": 2, "name": "I N S T A N T L Y", "description": "A Chrome Extension to manage your Boomi Processes right from your browser toolbar.", "version": "0.0.0.2", "background": { "scripts": [ "event.js" ], "persistent": true }, "browser_action": { "default_title": "I N S T A N T L Y", "default_popup": "popup.html" }, "permissions": [ "storage", "tabs", "https://api.boomi.com/api/rest/v1/*" ], "icons": { "128": "icon.png" } }

No background scripts found in your manifest.json file. Your manifest must contain at least one script in the "app.background.scripts" array.