Wikimapia add "view on map" button

try to take over the world!

目前為 2021-06-01 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name Wikimapia add "view on map" button
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.5
  5. // @description try to take over the world!
  6. // @author You
  7. // @match *://wikimapia.org/*
  8. // @match *://*.wikimapia.org/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. alert(window.location.host);
  15. if (window == window.top) {
  16. var link = $('form#search-form').attr('action');
  17. link = link.replace('&m=b', '');
  18. link = 'http://wikimapia.org/'+link;
  19.  
  20. $('#placeinfo').prepend('<a class="btn btn-primary-blue" href="'+link+'&lang=ru&m=w&show=' + window.location.pathname + '">Посмотреть на карте</a>');
  21. }
  22. })();