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
// Send message to ml.js | |
chrome.runtime.sendMessage({ | |
'key': 'value' | |
}) | |
chrome.runtime.onMessage.addListener(function(message) { | |
console.log('CS: Second message received') | |
}) |
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 Revert Vote Counts on StackExchange Websites | |
// @namespace everywhere | |
// @include *://*stackoverflow.com/* | |
// @include *://*stackexchange.com/* | |
// @include *://*askubuntu.com/* | |
// @include *://*superuser.com/* | |
// @include *://*serverfault.com/* | |
// @version 1 | |
// @grant none |