Skip to content

Commit

Permalink
Change clicking method of the leave feedback button
Browse files Browse the repository at this point in the history
  • Loading branch information
milanify committed Sep 22, 2018
1 parent 1822035 commit 6e9a170
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion chrome/content_scripts/current_leavefeedback.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function leaveFeedback(contents) {
event.initEvent('mouseup', true, false);

for (i = 0; i < leaveFeedbackButtons.length; i++) {
leaveFeedbackButtons[i].dispatchEvent(event);
leaveFeedbackButtons[i].click();
}

/** If there was feedback left, reload the page for other possible transactions
Expand Down
2 changes: 1 addition & 1 deletion chrome/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Auto eBay Feedback",
"description": "Automatically leaves eBay feedback for all transactions",
"homepage_url": "https://github.com/milan102/Auto-eBay-Feedback",
"version": "2.1",
"version": "2.2",
"manifest_version": 2,

"browser_action": {
Expand Down
2 changes: 1 addition & 1 deletion edge/content_scripts/current_leavefeedback.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function leaveFeedback(contents) {
event.initEvent('mouseup', true, false);

for (i = 0; i < leaveFeedbackButtons.length; i++) {
leaveFeedbackButtons[i].dispatchEvent(event);
leaveFeedbackButtons[i].click();
}

/** If there was feedback left, reload the page for other possible transactions
Expand Down
2 changes: 1 addition & 1 deletion edge/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Auto eBay Feedback",
"description": "Automatically leaves eBay feedback for all transactions",
"homepage_url": "https://github.com/milan102/Auto-eBay-Feedback",
"version": "2.1",
"version": "2.2",
"manifest_version": 2,
"author": "Milan Mishra",
"browser_action": {
Expand Down
2 changes: 1 addition & 1 deletion firefox/content_scripts/current_leavefeedback.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function leaveFeedback(contents) {
event.initEvent('mouseup', true, false);

for (i = 0; i < leaveFeedbackButtons.length; i++) {
leaveFeedbackButtons[i].dispatchEvent(event);
leaveFeedbackButtons[i].click();
}

/** If there was feedback left, reload the page for other possible transactions
Expand Down
2 changes: 1 addition & 1 deletion firefox/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Auto eBay Feedback",
"description": "Automatically leaves eBay feedback for all transactions",
"homepage_url": "https://github.com/milan102/Auto-eBay-Feedback",
"version": "2.1",
"version": "2.2",
"manifest_version": 2,

"browser_action": {
Expand Down
2 changes: 1 addition & 1 deletion opera/content_scripts/current_leavefeedback.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function leaveFeedback(contents) {
event.initEvent('mouseup', true, false);

for (i = 0; i < leaveFeedbackButtons.length; i++) {
leaveFeedbackButtons[i].dispatchEvent(event);
leaveFeedbackButtons[i].click();
}

/** If there was feedback left, reload the page for other possible transactions
Expand Down
2 changes: 1 addition & 1 deletion opera/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Auto eBay Feedback",
"description": "Automatically leaves eBay feedback for all transactions",
"homepage_url": "https://github.com/milan102/Auto-eBay-Feedback",
"version": "2.1",
"version": "2.2",
"manifest_version": 2,

"browser_action": {
Expand Down

0 comments on commit 6e9a170

Please sign in to comment.