Google have just announced some changes to Chrome extension submissions:
https://blog.chromium.org/2018/10/trustworthy-chrome-extensions-by-default.html
"Starting today, Chrome Web Store will no longer allow extensions with obfuscated code...Ordinary minification, on the other hand, typically speeds up code execution as it reduces code size, and is much more straightforward to review. Thus, minification will still be allowed"
I have a Chrome extension that uses Webpack to convert TypeScript to JavaScript which then uses UglifyJS to minify it. If I submit only the minified code, is this compliant?
What would be an example of obfuscation that is disallowed?
What are some examples of obfuscation tools that now cannot be used?
Minification can be viewed as a form of obfuscation and transpiled code is harder to review than the original code so I'm not finding the announced changes clear.