Hi
I'd suggest replacing jquery with uncompressed version (from https://code.jquery.com/jquery/)
At least I had no issues with original uncompressed versions. Won't hurt
Also, I experienced rejection because I used atob function. It's a kinda marker of obfuscation for CWS automatic control.
Aleksey
the team that handles replies to rejection emails can't go into much detail about the reason for rejection.
I dug into the most recent rejection and found the offending bit of code that was considered obfuscation. At the moment your URL handing is a bit unconventional; you declare dsub, dhost, and dtld at the top of your popup.js script, then proceed to re-combine them in your fp function by assigning them to a variable called dn (which is unused). While I wouldn't consider this obfuscation, I can see the reviewer's point of view here; there's little reason to do this than making it harder for someone reading the source to understand the logic. That said, this feels overzealous to me and if you were still being rejected I'd open an issue with the review team to reassess this verdict.Â
Please note that minification is allowed in the following forms:
- Removal of whitespace, newlines, code comments, and block delimiters
- Shortening of variable and function names
var dn = dhost+'.'+dtld;
console.log('dn - '+dn);Â
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/chromium-extensions/CAFLSVxfxDs1N_%3D30YYzz1c%2B_TpBfGJey30eSBfVzaJ65HGTUug%40mail.gmail.com.
I wish everyone within the sound of my voice would submit non-obfuscated code with comments intact, to better the average review response time for everyone else.