Advertisement
Guest User

Untitled

a guest
Jul 19th, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. // ==UserScript==
  2. // @name AMZ colors count
  3. // @include /^https?://www\.amazon(\.com?)?\.[a-z]{2,3}/.*$/
  4. // @namespace /^https?://www\.amazon(\.com?)?\.[a-z]{2,3}/.*$/
  5. // ==/UserScript==
  6.  
  7. (function() {
  8. let selectNum = document.querySelectorAll("#native_dropdown_selected_color_name option").length - 45;
  9. if( document.querySelectorAll("#variation_color_name li").length == 0 ) {
  10. document.querySelector("#productTitle").innerHTML += "<div style='margin: 20px 0; font-size: 17px'><strong>Kolory:</strong> Za dużo o <strong><span style='color: #ff2b55'>" + selectNum + "</span></strong> warianty!!!11one</div>";
  11. } else {
  12. document.querySelector("#productTitle").innerHTML += "<div style='margin: 20px 0; font-size: 17px'><strong>Kolory:<span style='color: #ff2b55'> " + document.querySelectorAll("#variation_color_name li").length + "</span></strong></div>";
  13. }
  14. }())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement