Wikimapia add "view on map" button

try to take over the world!

当前为 2021-05-31 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Wikimapia add "view on map" button
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.4
  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. if (window == window.top) {
  15. var link = $('form#search-form').attr('action');
  16. link = link.replace('&m=b', '');
  17. link = link.replace('https', 'http');
  18.  
  19. $('#placeinfo').prepend('<a class="btn btn-primary-blue" href="'+link+'&lang=ru&m=w&show=' + window.location.pathname + '">Посмотреть на карте</a>');
  20. }
  21. })();