6 month ping
Posts made by ne0sight
- Opera add-ons
-
RE: Very long extension moderation processOpera add-ons
To say the truth - I was wrong. Mozilla's moderation process is longer.
For now I'm waiting more than a month for Mozilla's review. - Opera add-ons
- Opera add-ons
-
Wrong addon ratingOpera add-ons
https://addons.opera.com/en/extensions/details/gnome-shell-integration/
It shows rating 4 with 2 votes, however there are 2 reviews with rating 5.
- Opera for Linux
- Opera add-ons
-
RE: [BUG][Publication] Extension manifest broken after extension publicatedOpera add-ons
Any comment? Bug report id is DNAWIZ-5702
-
RE: [BUG][Publication] Extension manifest broken after extension publicatedOpera add-ons
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 -
[BUG][Publication] Extension manifest broken after extension publicatedOpera add-ons
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. -
RE: Very long extension moderation processOpera add-ons
AFAIK, yes. Even more than that.
Sadly for Opera users. Thanks for answer.
Hope Opera will improve time of moderation process.
-
RE: Very long extension moderation processOpera add-ons
My extension moderated now.
I still want to get answer to this question:
Will moderation process of new extension version takes a week+?
Thanks.
-
RE: Very long extension moderation processOpera add-ons
Guys, it holiday time. Be patient!
If you read 1st message that you must know that my extension was submitted a week ago from 15 Aug - that is 8 Aug.
Today is 18 - that is 10 days in total. Which holidays did you mean? -
Very long extension moderation processOpera add-ons
I just want to post my opinion about very long moderation process for extensions.
I submitted GNOME Shell integration extension for moderation one week ago and it's still in "Awaiting moderation" state.
To compare, same process (as I think - automated) in Chrome Store takes several minutes and in Mozilla addons - several seconds.
In 2 weeks I plan to release new version of extension.
Will moderation process of new extension version takes a week+? -
Alternative extension distributionOpera add-ons
Hi,
This question was early asked at github long time ago without answer.
In Google Chrome it's possible to
hint
user to use some extension from Chrome Store by placing fileextension_id.json
with content{ "external_update_url": "https://clients2.google.com/service/update2/crx" }
to
/usr/share/google-chrome/extensions/
.When user opens browser, extension will be auto installed from Chrome Store if it was not previously installed and then removed by user.
Is it possible in Opera?