Wikimapia add "view on map" button

try to take over the world!

当前为 2021-02-19 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Wikimapia add "view on map" button
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  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 (!document.location.href.indexOf('lat=')) {
  15. $('#placeinfo').prepend('<a class="btn btn-primary-blue" href="/#lang=ru&m=w&show=' + window.location.pathname + '">Посмотреть на карте</a>');
  16. }
  17. })();