Advertisement
Guest User

Gre Monkhe

a guest
Dec 27th, 2014
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. // ==UserScript==
  2. // @name #perkmoney
  3. // @namespace money
  4. // @description real money
  5. // @include http://perk.com/*
  6. // @version 1
  7. // @grant none
  8. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js
  9. // @require https://cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.min.js
  10. // ==/UserScript==
  11. var money = $('#total-points').text();
  12. var new_money = money / 1000;
  13. $('#total-points').text('$' + new_money);
  14.  
  15. var hash = window.location.hash;
  16. if (hash == "#1") {
  17. console.log('yeaaaaaaaaa');
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement