您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
automatically checks the bitbucket on-premise pull-request overview draft checkbox.
// ==UserScript== // @name Bitbucket check draft box // @namespace http://tampermonkey.net/ // @version v1 // @description automatically checks the bitbucket on-premise pull-request overview draft checkbox. // @author bashbers // @require https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.18.2/babel.js // @require https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/6.16.0/polyfill.js // @match *://yourbitbucketurlhere/*/pull-requests // @license MIT // ==/UserScript== window.onload = onPageLoad(); function onPageLoad() { setTimeout(() => { document.querySelector('#pr-draft-filter.checkbox').click()}, 250) }