This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// All roles by user | |
<fetch top="500" > | |
<entity name="systemuser" > | |
<attribute name="fullname" /> | |
<filter> | |
<condition attribute="islicensed" operator="eq" value="1" /> | |
</filter> | |
<link-entity name="systemuserroles" from="systemuserid" to="systemuserid" > | |
<attribute name="roleid" /> | |
<link-entity name="role" from="roleid" to="roleid" > |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Dynamics CRM Modal Resizer | |
// @namespace seequent.com | |
// @version 0.1 | |
// @description Make the tiny modal dialogs in dynamics able to be resized and dragged. | |
// @author [email protected] | |
// @match https://*.dynamics.com/* | |
// @grant none | |
// @run-at document-idle | |
// ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name JIRA Easy StandUp Kanban Mods | |
// @namespace seequent.com | |
// @version 0.1 | |
// @description Some UI tweaks to ease some pain points when using the JIRA kanban board for standups. | |
// @author [email protected] | |
// @match https://*.atlassian.net/secure/RapidBoard.jspa* | |
// @run-at document-idle | |
// @grant GM_addStyle | |
// @grant GM_log |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Dynamics CRM Link To Record | |
// @namespace seequent.com | |
// @version 0.2 | |
// @description Add a copy link to clipboard option to the three dot menu below the ribbon. | |
// @author [email protected] | |
// @match https://*.dynamics.com/* | |
// @grant GM_log | |
// @run-at document-idle | |
// ==/UserScript== |