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
function getUserId(fbid) { | |
return fbid.split(':')[1]; | |
} | |
requireLazy( | |
['MercuryTypingReceiver', 'MercuryThreads', 'ShortProfiles'], | |
(MercuryTypingReceiver, MercuryThreads, ShortProfiles) => { | |
MercuryTypingReceiver | |
.get() |
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
import React, { Component } from 'react'; | |
function compose(ChatMessage, ImmutableObject) { | |
return class ComposedChatMessage extends Component { | |
render() { | |
const message = new ImmutableObject(this.props.message, { | |
customizations: [ | |
{ | |
customization_type: 'border', | |
customization_value: 'flowers', |
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 Decent OfficeMix player | |
// @version 1.0 | |
// @description Remove paused logo and add keyboard controls to the OfficeMix player | |
// @author Alexandre Kirszenberg <[email protected]> | |
// @run-at document-start | |
// @match https://mix.office.com/embed/* | |
// @grant none | |
// ==/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 Facebook Tamper | |
// @version 0.1 | |
// @author Alexandre Kirszenberg | |
// @match https://www.facebook.com/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
function compose(React, ContentState, EditorState, DraftEditor) { |
OlderNewer