Guest User

Untitled

a guest
Jun 20th, 2018
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. // ==UserScript==
  2. // @id gmyql-test@erikvold.com
  3. // @name GM_YQL test
  4. // @namespace test
  5. // @include *
  6. // @author Erik Vergobbi Vold <erikvvold@gmail.com>
  7. // @license MIT
  8. // ==/UserScript==
  9.  
  10. GM_YQL({
  11. query: "desc delicious.feeds",
  12. format: "json",
  13. onload: function(json) {
  14. alert(json.query.results.table.name)
  15. }
  16. })
Add Comment
Please, Sign In to add comment