Right Click Save Images on Twitter

Right click and save images in a Twitter gallery. Just right click in the middle. The sides to go to the prev/next image.

  1. // ==UserScript==
  2. // @name Right Click Save Images on Twitter
  3. // @namespace http://adrienj.com/
  4. // @version 0.2
  5. // @description Right click and save images in a Twitter gallery. Just right click in the middle. The sides to go to the prev/next image.
  6. // @homepage http://adrienj.com/
  7. // @author Adrien Johnson
  8. // @match https://twitter.com/*
  9. // @grant GM_addStyle
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. GM_addStyle (".GalleryNav--next { width: 30%; }");
  16. })();