Advertisement
Guest User

Untitled

a guest
Jul 19th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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.  
  10.     if( document.querySelectorAll("#variation_color_name li").length == 0 && document.querySelectorAll("#native_dropdown_selected_color_name option").length != 0) {
  11.         document.querySelector("#productTitle").innerHTML += "<div style='margin: 20px 0; font-size: 27px'><strong>Kolory:</strong> Za dużo o <strong><span style='color: #ff2b55'>" + selectNum + "</span></strong> kolory!!!11one</div>";
  12.     } else if ( document.querySelectorAll("#native_dropdown_selected_color_name option").length == 0 && document.querySelectorAll("#variation_color_name li").length == 0) {
  13.         document.querySelector("#productTitle").innerHTML += "<div style='margin: 20px 0; font-size: 27px'><strong>Kolory:<span style='color: #ff2b55'>1</span></strong></div>";
  14.     } else {
  15.         document.querySelector("#productTitle").innerHTML += "<div style='margin: 20px 0; font-size: 27px'><strong>Kolory:<span style='color: #ff2b55'> " + document.querySelectorAll("#variation_color_name li").length + "</span></strong></div>";
  16.     }
  17. }())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement