Check if Chrome extension installed in unpacked mode

前端 未结 3 1334
独厮守ぢ
独厮守ぢ 2020-12-08 10:23

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?

3条回答
  •  星月不相逢
    2020-12-08 10:51

    Here is a code sample how to do this:

    function isDevMode() {
        return !('update_url' in chrome.runtime.getManifest());
    }
    

提交回复
热议问题