This file contains 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
Homebrew build logs for homebrew/php/php56 on macOS 10.12.5 | |
Build date: 2017-07-04 06:57:26 |
This file contains 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== | |
// @include http://*/* | |
// @include https://*/* | |
// ==/UserScript== | |
//applies a "main-content" style to the first article element | |
var style = document.createElement('style'); | |
style.innerHTML = ".main-content {outline: 5px dotted deeppink !important;}" | |
document.body.appendChild(style); |