I am not able to load sourcemap in Chrome Extension for some reason.
The folder which is being loaded for Chrome Extension has .map
just next to .js
file. With the .js
file having the line //# sourceMappingURL=1.9215106f1980d05d2b4c.js.map
referencing the .map file path.
However, the Chrome dev-tools is not loading the maps for some reason.
I double checked the Chrome settings to make sure that the js source maps is turned on and it is working with a simple Angular project.
Also, made sure I have the following in the manifest file:
"web_accessible_resources":[
"*.map"
],