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
/* ==UserStyle== | |
@name Clean up booking.com | |
@description Remove ads and pther redundant stuff from booking.com | |
@namespace https://github.com/phts/ | |
@version 1.0.2 | |
==/UserStyle== */ | |
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document domain("booking.com") { |
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
/* ==UserStyle== | |
@name Clean up baraholka.onliner.by | |
@description Remove ads and other redundant stuff from baraholka.onliner.by | |
@namespace https://github.com/phts/ | |
@version 1.0.2 | |
==/UserStyle== */ | |
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document domain("baraholka.onliner.by") { |
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
javascript:(function(){ | |
"use strict"; | |
var $objects = $("object[type='application/x-shockwave-flash']"); | |
$.each($objects, function(index, object) { | |
var $object = $(object); | |
var flashvars = $("param[name='flashvars']", $object).attr("value"); | |
var pairs = flashvars.split("&"); | |
for (var pair of pairs) { | |
var items = pair.split("="); |
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
javascript:(function(){ | |
"use strict"; | |
var $a = $(".b-offers-desc__info-sub > a.b-offers-desc__info-price-value_secondary"); | |
var byrPricesText = $a.text(); | |
var byrPrices = byrPricesText.replace(/[^0-9โ]/g, "").split("โ"); | |
var currencyText = $("#currency-informer > a > span").text().replace(/[^0-9]/g, ""); | |
var currency = parseInt(currencyText); |
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
Set sh = CreateObject("WScript.Shell") | |
For counter = 1 To 10 | |
activated = sh.AppActivate("ะกะฟะพะฝัะธััะตะผัะน ัะตะฐะฝั") | |
If activated = True Then | |
For t = 1 To 2 | |
sh.SendKeys "{TAB}" | |
Next | |
sh.SendKeys " " | |
WScript.Quit |
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
/* ==UserStyle== | |
@name Fix and improve Web Skype UI | |
@namespace https://github.com/phts/ | |
@version 1.0.1 | |
==/UserStyle== */ | |
@-moz-document domain("web.skype.com") { | |
/* Make message textarea show text with line feeds and extra white spaces correctly */ | |
textarea[name="messageInput"] { |
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
// ==PREPROCESSOR== | |
// @import "%fb2k_profile_path%marc2003\common4.js" | |
// @import "%fb2k_profile_path%marc2003\tooltip_buttons.js" | |
// @name "Playcount Sync" | |
// @author "marc2003" | |
// @feature "v1.4" | |
// @feature "watch-metadb" | |
// ==/PREPROCESSOR== | |
var bw = 32; |
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== | |
// @description Script provides browser notifications in Outlook Web App | |
// @grant none | |
// @include https://*/owa/* | |
// @exclude https://*/manifests/appCacheManifestHandler.ashx* | |
// @name OWA Notifications | |
// @namespace https://github.com/phts/ | |
// @version 3.2.4 | |
// ==/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
javascript:(function() { | |
var interval, | |
permutations = { | |
check: { | |
'3': [[false, false, true], | |
[false, true, false], | |
[true, false, false], | |
[false, true, true], | |
[true, true, false], | |
[true, true, true]], |
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
javascript:(function() { | |
let bodycontent = document.querySelectorAll('.bodycontainer')[0]; | |
bodycontent.childNodes[1].remove(); /* <hr> */ | |
bodycontent.childNodes[0].remove(); /* <table> with logo */ | |
let maincontent = document.querySelectorAll('.maincontent')[0]; | |
let table = maincontent.childNodes[2]; | |
maincontent.childNodes[1].remove(); /* <hr> */ | |
maincontent.childNodes[0].remove(); /* <table> with email title */ | |