Right Click Save Images on Twitter

Lets you right click and save images in a Twitter gallery.

目前为 2016-06-18 提交的版本。查看 最新版本

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