Skip to content

Instantly share code, notes, and snippets.

@retlet
Created March 31, 2011 08:29
Show Gist options
  • Save retlet/896029 to your computer and use it in GitHub Desktop.
Save retlet/896029 to your computer and use it in GitHub Desktop.
toStringパッチ入れた
// ==UserScript==
// @name LDR + Tombloo
// @namespace http://userscripts.org/users/7010
// @updateURL http://userscripts.org/scripts/source/23537.user.js
// @include http://reader.livedoor.com/reader/*
// @include http://fastladder.com/reader/*
// ==/UserScript==
GM_addStyle(<><![CDATA[
.TMBL_posted,
.TMBL_posted a{
color : silver !important;
}
.TMBL_posted .item_body a{
color : dimgray !important;
}
.TMBL_posted img{
-moz-opacity: 0.5;
}
]]></>.toString());
var win = unsafeWindow;
var doc = win.document;
window.addEventListener('load', function(){
win.Keybind.add('T', share);
}, true);
function share(event){
var tombloo = GM_Tombloo.Tombloo.Service;
var feed = win.get_active_feed();
var item = win.get_active_item(true);
var target = item.element;
var parent = $x('ancestor::div[starts-with(@id, "item_count")]/parent::div', target);
var body = $x('.//div[@class="item_body"]', parent);
var ctx = update({
document : doc,
window : win,
selection : '' + win.getSelection(),
target : target,
event : {},
title : null,
mouse : null,
menu : null,
}, win.location);
// FFFFOUND / Flickr / iza newsphoto
if([
'flickr.com/',
'http://ffffound.com',
'http://www.bighappyfunhouse.com',
'http://f.hatena.ne.jp',
'http://lpcoverlover.com',
'http://www.chicksnbreasts.com',
'1eb46a2f1f83c340eee10cd49c144625'].some(function(pattern){
return feed.channel.link.indexOf(pattern) != -1;
})){
ctx.onImage = true;
ctx.target = $x('.//img[1]', body);
}
var ext = tombloo.check(ctx)[0];
tombloo.share(ctx, ext, ext.name.match(/^Link /));
win.addClass(parent, 'TMBL_posted');
}
// ---- [Utility] ----------------------------------------------------
function update(t, s){
for(var p in s)
t[p] = s[p];
return t;
}
function $x(exp, context){
context = context || document;
return document.evaluate(exp, context, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment