Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @match http://vk.com/*
- // ==/UserScript==
- // в пользовательских скриптах нельзя обратиться напрямую к переменным страницы, однако можно выполнить любой код добавив тег script на страницу
- function execute(cb) {
- s = document.createElement('script');
- s.textContent = '(' + cb + ')()';
- document.body.appendChild(s);
- }
- function main() {
- console.log(1);
- // console.log('Your id is ' + vk.id);
- }
- execute(main);
Advertisement
Add Comment
Please, Sign In to add comment