Flickr2commons redirector

redirect flickr to flickr2commons

  1. // ==UserScript==
  2. // @name Flickr2commons redirector
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description redirect flickr to flickr2commons
  6. // @author Anderson Green
  7. // @include /^https:(\/\/|\/\/www\.)flickr\.com\/photos\/.*$/
  8. // @grant none
  9. // @run-at document-start
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. //alert("It works!");
  16. window.location = "https://flickr2commons.toolforge.org/#/photo/"+window.location.href.split("/")[5];
  17. // Your code here...
  18. })();