I am working on a chrome.bluetooth application. However, something is wrong with manifest.json. However, I see no way to set a breakpoint in manifest.json - obviously this is declarative.
My manifest is .json:
{ "name": "Bluetooth Low Energy Test App", "description": "App testing the chrome.bluetoothLowEnergy API", "version": "0.1", "app": { "background": { "scripts": ["background.js"] } }, "bluetooth": { "low_energy": true } }
Is there any way to debug manifest.json? That is, to see how and where it may give incorrect values โโfor various ads. Linter? Anything?
I tried this on stable (42) and canary (44) builds of chrome on Mac OSX and ChromeOS and don't see an obvious solution.
source share