Page MenuHomePhabricator
Paste P2444

suggestion expander userscript for chrome
ActivePublic

Authored by mmodell on Dec 19 2015, 11:02 PM.
// ==UserScript==
// @name wikimedia phabricator suggestion expander
// @namespace wikimedia
// @description wikimedia phabricator suggestion expander
// @match https://phabricator.wikimedia.org/*
// @version 1
// @grant none
// ==/UserScript==
var inject = function() {
JX.TypeaheadSource.prototype.setMaximumResultCount(15);
};
var script = document.createElement('script');
script.textContent = '(' + inject + ')()';
(document.head||document.documentElement).appendChild(script);
script.parentNode.removeChild(script);

Event Timeline

mmodell changed the title of this paste from untitled to suggestion expander userscript for chrome.Dec 19 2015, 11:02 PM
mmodell updated the paste's language from autodetect to js.
mmodell edited the content of this paste. (Show Details)
mmodell changed the edit policy from "All Users" to "Administrators".
mmodell added a project: Phabricator.