| 1234567891011121314151617181920212223 |
- // ==UserScript==
- // @name Flickr: Allow saving any image
- // @namespace http://tampermonkey.net/
- // @version 2024-11-23
- // @description try to take over the world!
- // @author You
- // @match https://www.flickr.com/photos/*/*/sizes/*
- // @icon https://www.google.com/s2/favicons?sz=64&domain=flickr.com
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- var faker = document.querySelector('.spaceball');
- if (!faker) {
- faker = document.querySelector('.allsizes-photo > div');
- }
- if (!faker) {
- console.warning('Could not locate spaceball faker');
- }
- faker.remove();
- })();
|