stuppid_bot

Untitled

May 31st, 2013
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @match http://vk.com/*
  3. // ==/UserScript==
  4.  
  5. // в пользовательских скриптах нельзя обратиться напрямую к переменным страницы, однако можно выполнить любой код добавив тег script на страницу
  6. function execute(cb) {
  7.     s = document.createElement('script');
  8.     s.textContent = '(' + cb + ')()';
  9.     document.body.appendChild(s);
  10. }
  11.  
  12. function main() {
  13.     console.log(1);
  14.     // console.log('Your id is ' + vk.id);
  15. }
  16.  
  17. execute(main);
Advertisement
Add Comment
Please, Sign In to add comment