Skip to content

Instantly share code, notes, and snippets.

@CamiloMM
CamiloMM / screenr-download.js
Created February 2, 2013 20:36
This script adds a download link to screenr.com videos.
jQuery(document).ready(function($) {
// Booooriiing (I hate SOAP operas).
var boilerPlate1 = '<?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><FetchScreencastInfo xmlns="http://screenr.com/"><screencastId>';
var boilerPlate2 = '</screencastId></FetchScreencastInfo></soap:Body></soap:Envelope>';
// Let's put this here to dry up. It's gonna make sure the alignment is right.
$('.screencast_description>.viewcount').css('text-align', 'right');
try {
@CamiloMM
CamiloMM / FixYahoo.css
Last active December 18, 2015 19:38
Put this somewhere in your User Stylesheets file for Google Chrome and Yahoo Mail will be *so much better*.
div#main > div#paneshell > div#shellcontent { right: 0 !important; }
div#main > div#toolbar.fresh-toolbar { right: 0 !important; }
.yucs-fl-left > div#yucs-nav.yui3-menu { display: none; }
.yucs-fl-left > div#yucs-logo { display: none; }
div#yucs-prop_search_button_wrapper.yucs-search-buttons { display: none !important; }
div#yucs-web_search_button_wrapper.yucs-search-buttons { display: none !important; }
div#yucs.yucs-mc > div.yucs-fl-right > div#yucs-network_link { display: none !important; }
.yucs-form-input > input#mnp-search_box.yucs-search-input {
border-radius: 0 !important;
border: 1px solid #451A87 !important;
@CamiloMM
CamiloMM / from-dA-to-Z-and-back.user.js
Created December 6, 2014 05:07
From dA to Z and back
// ==UserScript==
// @name From dA to Z and back
// @namespace http://camilo.is/
// @version 0.1
// @description Fixes the horrible new dA logo by replacing it with the old one.
// @include http://*.deviantart.com/*
// @include http://deviantart.com/*
// @match http://*.deviantart.com/*
// @match http://deviantart.com/*
// @author Camilo Martin <herzschaltung@yahoo.com.ar> (http://camilo.is/)