Greasy Fork 还支持 简体中文。

itch.io bundle open in new tab

Makes the "Download" button on the itch.io bundle pages open in a new tab.

  1. // ==UserScript==
  2. // @name itch.io bundle open in new tab
  3. // @namespace http://mathemaniac.org/
  4. // @version 1.0.0
  5. // @description Makes the "Download" button on the itch.io bundle pages open in a new tab.
  6. // @match https://itch.io/bundle/download/*
  7. // @copyright 2020, Sebastian Paaske Tørholm
  8. // @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. /* jshint -W097 */
  13. /* eslint-env jquery */
  14. 'use strict';
  15.  
  16. $(function () {
  17. $('.game_row .button_row form').attr('target', '_blank');
  18. });