Skip to content

Instantly share code, notes, and snippets.

@luckylooke
Last active April 2, 2021 07:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save luckylooke/e44bd8d44d51019d11c54c90cc94e09c to your computer and use it in GitHub Desktop.
Save luckylooke/e44bd8d44d51019d11c54c90cc94e09c to your computer and use it in GitHub Desktop.
User script (userscript) prefill 5-star rating in aliexpress feedback
// ==UserScript==
// @name Aliexpress feedback
// @namespace https://feedback.aliexpress.com/
// @version 1.1.0
// @description prefill 5-star rating in aliexpress feedback
// @author luckylooke
// @match https://feedback.aliexpress.com/management/leaveFeedback.htm*
// @grant none
// ==/UserScript==
/*
source: https://gist.github.com/luckylooke/e44bd8d44d51019d11c54c90cc94e09c
Changelog:
1.1.0 Available to press 'enter' key for instant feedback submit
1.0.0 Prefill all 5-star
*/
(function() {
'use strict';
// setTimeout for page readiness
setTimeout(function(){
var all = document.getElementsByClassName('star star-5');
var l = all.length;
for(var i=0; i<l; i++)
all[i].click();
window.onkeypress = function(e){
if (e.keyCode == 13) {
document.getElementById('buyerLeavefb-submit-btn').click();
}
};
}, 300);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment