NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Jira Scrolling Conflict Resolver // @namespace http://alekseykarpenko.com // @version 1.0.0 // @description Resolve the conflict between scrolling and swipe back on Jira Addons // @author Aleksey Karpenko <contact@alekseykarpenko.com> // @match https://*.atlassian.net/* // @grant none // @license MIT // @copyright 2020, alekseykarpenko (https://openuserjs.org/users/alekseykarpenko) // ==/UserScript== (function() { 'use strict'; document.getElementsByTagName("body")[0].style.overscrollBehaviorX = "none"; })();