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
<html> | |
<head> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> | |
<script type="text/javascript" charset="utf-8"> | |
$(function () { | |
var extractToken = function(hash) { | |
var match = hash.match(/access_token=(\w+)/); | |
return !!match && match[1]; | |
}; |
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
div.page-content.two-column-layout, | |
.column-two-left, | |
.yj-main-content{ | |
margin-left: auto !important; | |
margin-right: auto !important; | |
width: 500px !important; | |
} | |
#column-two { | |
width: 100% !important; |
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
# Search the Drupal 7 API | |
alfredapp://customsearch/Drupal%207%20API/dp/ascii/url=http://api.drupal.org/api/search/7/{query} | |
# Search the Drupal 6 API | |
alfredapp://customsearch/Drupal%206%20API/dp6/ascii/url=http://api.drupal.org/api/search/6/{query} | |
# Enter a module/theme name and go right that page | |
alfredapp://customsearch/Drupal%20Project/dpp/ascii/url=http://drupal.org/project/{query} | |
# Use Google to search drupal.org |
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
body, | |
div.page-content.two-column-layout, | |
div.page-content.three-column-layout { | |
background: none !important; | |
} | |
.two-column-layout #column-two { | |
margin-top: 0px; | |
} |
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
(function () { | |
if (window.fluid) { | |
var last_message_id = 0 | |
// hide the system_notice banner after 10 seconds! | |
window.setTimeout(function() { | |
$("system_notice").hide(); | |
}, 10*1000); | |
window.setInterval(function() { |
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
// ==UserScript== | |
// @name fluid-dock-badge | |
// @namespace http://fluidapp.com | |
// @description Dock badge for unread messages on Yammer.com | |
// @include * | |
// @author Joe Shindelar (eojthebrave) | |
// ==/UserScript== | |
(function ($) { | |
if (window.fluid) { | |
setInterval(dockBadge, 5000); |
NewerOlder