[BUG][Publication] Extension manifest broken after extension publicated
-
ne0sight last edited by
Hi,
My extension ID is "olkooankbfblcebocnkjganpdmflbnbk".
After it was published in Opera Addons manifest got broken - order of "background -> scripts" are messed up.
Order of scripts is critical for my extension.Before inclusion:
"background": { "scripts": [ "include/jquery-2.1.4.min.js", "include/i18n.js", "include/constants.js", "include/gsc.js", "include/notifications.js", "include/update.js", "extension.js" ], "persistent": false },
After publication:
"background": { "persistent": false, "scripts": [ "extension.js", "include/constants.js", "include/gsc.js", "include/i18n.js", "include/jquery-2.1.4.min.js", "include/notifications.js", "include/update.js" ] },
I think values of "scripts" array are sorted alphabetically - that is error.
Google do not touch order of "scripts" array as part of publication process. -
ne0sight last edited by
P.S.: I know that I may create html page instead of scripts array and (probably) Opera's parser will not touch html page.
However, I do want that this bug will be fixed