Is there a way to detect whether I\'m running an extension that was installed from my .crx file or the extension was loaded as via \'Load unpacked extension...\' button?
Here is a code sample how to do this:
function isDevMode() { return !('update_url' in chrome.runtime.getManifest()); }