Greasy Fork 支持简体中文。

Subnova SL Map image preview

Adds a map image preview (the image isn't very good)

  1. // ==UserScript==
  2. // @name Subnova SL Map image preview
  3. // @namespace http://mailerdaemon.home.comcast.net/
  4. // @description Adds a map image preview (the image isn't very good)
  5. // @include http://www.subnova.com/secondlife/api/map.php?sim=*
  6. // @version 0.0.1.20140517011137
  7. // ==/UserScript==
  8.  
  9. var node = document.body;
  10. if(node.textContent.length == 36)
  11. {
  12. var img = document.createElement("img");
  13. img.src = "http://secondlife.com/app/image/"+node.textContent+"/2"
  14. img.width = img.height = 240;
  15. img.title = img.alt = "Basic map preview"
  16. node.appendChild(document.createElement("br"));
  17. node.appendChild(img);
  18. }