Reputation: 92641
With the introduction of .map files I am getting my console flooded with errors like:
Denying load of chrome-extension://flpedblkbobmjlipnnmalidalmhkangn/jquery.min.map. Resources must be listed in the web_accessible_resources manifest key in order to be loaded by pages outside the extension.
Is there any way I can suppress error messages about .map files?
Upvotes: 15
Views: 12311
Reputation: 31
Download the map file and place it in the same .js file directory. http://jquery.com/download/
Upvotes: 1
Reputation: 92641
You can filter out the messages for the .map files by right clicking them in the console (Not the link) Selecting Filter > Hide messages from ...
You can also disabled either CSS or JavaScript source maps globally from the Developer Tools settings.
Upvotes: 26