Do source maps work for Chrome extensions?
I'm using the Closure compiler to create a Chrome extension and I'd like to get source maps to work for debugging. I can get source maps to work just fine by pointing the browser directly to a page in my source tree with the special sourceMappingURL added to the end of the compiled javascript file (everything is in a single directory): debugger;document.getElementById("hello").innerHTML="Hello, world!"; //@ sourceMappingURL=background-compiled.map But when I access the same script as an extension, I can only see the compiled javascript and not the original source. I do have the Chrome debugger