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
// The below code when inserted into the URL field of a bookmark, will | |
// turn your Google Hangouts into a dark mode view when the bookmark is clicked | |
javascript: (function() { | |
var background = document.querySelector('div[style*="background-image:url"]'); | |
if (background) { | |
background.remove(); | |
} | |
var callToAction = document.querySelector(".g-Ue-T-J"); |
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
// The below code is to be copied/pasted into a bookmarklet URL field (remove the comments or it won't work) | |
// When viewing a Jira ticket, post to a Slack channel that you have completed the ticket | |
// Requires you have a Slack Incoming webhook configured + the webhook URL | |
// That can be set up here: https://slack.com/apps/A0F7XDUAZ-incoming-webhooks | |
javascript: (function() { | |
const desc = document.getElementById("summary-val").innerText; | |
const ticketURL = document.URL; | |
const slackMsgStr = | |
":comet: *Finished testing:* :comet:\n- " + ticketURL + "\n- " + desc + "\n\n:white_check_mark: _Ready to Deploy!_"; |
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
javascript: (function() { | |
var playerContainer = document.querySelector("div.l-col-fluid"); | |
if (playerContainer) { | |
playerContainer.setAttribute("style", "width: 1050px; height: 610px;"); | |
} | |
var textBlurb = document.querySelector("aside.l-col-fixed"); | |
if (textBlurb) { | |
textBlurb.className = "l-col-fluid"; | |
} | |
var background = document.querySelector("#panel"); |
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
// Sends text to clipboard to be pasted into slack -- after finishing testing a ticket | |
javascript: (function () { | |
var desc = document.getElementById("summary-val").innerText; | |
var str = "*Finished testing:*\n- " + document.URL + "\n- " + desc + "\n\n:small_orange_diamond: _Pending PR Approval Still...\n:white_check_mark: _Ready to Deploy!_"; | |
if (str) { | |
var el = document.createElement('textarea'); | |
el.value = str; | |
el.setAttribute('readonly', ''); |
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
{ | |
"version": 1, | |
"keyboard": { | |
"keys": [{ | |
"id": 0, | |
"legend": "Esc", | |
"state": { | |
"x": 0, | |
"y": 0, | |
"r": 0, |