WB2010 Alert

Ostrzeżenie przed materiał sponsorowanym WB2010

当前为 2015-11-23 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name WB2010 Alert
  3. // @namespace el nino
  4. // @description Ostrzeżenie przed materiał sponsorowanym WB2010
  5. // @include http://www.skyscrapercity.com/showthread.php*
  6. // @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
  7. // @version 1.03
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. var warning = '<div style="height: 20px; background-color: #70201F; color: white; margin: 8px 0 10px 0; padding: 5px 10px;">'
  12. +'<strong>Uwaga:</strong> Poniższy post zawiera materiał sponsorowany!</div>';
  13.  
  14. $(".bigusername").each(function() {
  15. if ($(this).text() == 'WB2010') $(this).closest('.page').prepend(warning);
  16. });