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 JetBrains Mono font for Github | |
// @namespace local.greasemonkey.jetbrainsmonoforgithub | |
// @include https://github.com/* | |
// @version 2 | |
// @grant none | |
// ==/UserScript== | |
let fontdef = "JetBrains Mono, SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace ! important"; // Set your font here. |
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
@font-face { | |
font-family: 'JetBrains Mono'; | |
src: url('https://cdn.jsdelivr.net/gh/JetBrains/JetBrainsMono/web/woff2/JetBrainsMono-Bold-Italic.woff2') format('woff2'), | |
url('https://cdn.jsdelivr.net/gh/JetBrains/JetBrainsMono/web/woff/JetBrainsMono-Bold-Italic.woff') format('woff'); | |
font-weight: 700; | |
font-style: italic; | |
font-display: swap; | |
} | |
@font-face { |
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
<?php | |
// | |
// Enrico Simonetti | |
// enricosimonetti.com | |
// | |
// 2016-05-08 on Sugar 7.7.0.0 | |
// file: custom/data/acl/SugarACLLock.php | |
// | |
// ACL to lock record in certain conditions. Always allow admin users and specific user ids |
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 Steam fullscreen screenshots | |
// @namespace https://github.com/thomas-ashcraft | |
// @version 0.1.0 | |
// @description Ability to view screenshots in fullscreen mode | |
// @author Thomas Ashcraft | |
// @match *://store.steampowered.com/app/* | |
// @license GPL-2.0+; http://www.gnu.org/licenses/gpl-2.0.txt | |
// @grant none | |
// @noframes |