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 feedly_gbsaver | |
// @description Save pins into Google Bookmarks | |
// @namespace http://ma.la/ | |
// @include http://feedly.com/* | |
// @include https://feedly.com/* | |
// @grant GM_xmlhttpRequest | |
// @version 1.0.0 | |
// ==/UserScript== | |
// http://la.ma.la/blog/diary_200605070200.htm |
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
chrome.downloads.onChanged.addListener(function(downloadDelta) { | |
if (downloadDelta.state && downloadDelta.state.current === "complete") { | |
var id = downloadDelta.id; | |
setTimeout(function(){ | |
chrome.downloads.erase({id: id}); | |
}, 5000); | |
} | |
}); | |
chrome.downloads.onDeterminingFilename.addListener(function(downloadItem, suggest) { | |
var dir = "C:\\"; |
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
@font-face { | |
font-family: "MS Pゴシック"; | |
src: local("MeiryoKe_PGothic"), local("MS Pゴシック"); | |
} | |
@font-face { | |
font-family: "MS PGothic"; | |
src: local("MeiryoKe_PGothic"), local("MS Pゴシック"); | |
} | |
@font-face { | |
font-family: "MS ゴシック"; |
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 LDR_ad_entry_blocker_mod.user.js | |
// @namespace http://d.hatena.ne.jp/edvakf/ | |
// @description Remove ad items | |
// @include http://reader.livedoor.com/reader/ | |
// ==/UserScript== | |
// Inspired by the original script http://blog.endflow.net/?p=58 | |
// The "IE OK?" lines **might** work for IE as well | |
(function(){ |
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 feedly - SavedForLater Opener | |
// @include http://feedly.com/* | |
// @include https://feedly.com/* | |
// @version 1.0.0 | |
// @license MIT License | |
// ==/UserScript== | |
(function() { | |
var func = function() { |
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
worker_processes 1; | |
master_process off; | |
worker_priority 10; | |
error_log logs/error.log crit; | |
worker_rlimit_nofile 8192; | |
events { | |
worker_connections 512; | |
} |
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
chrome.downloads.onDeterminingFilename.addListener(function(item, suggest) { | |
suggest({filename: item.filename, conflictAction: "prompt"}); | |
}); |
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 Tweetdeck Thumbnail | |
// @include https://tweetdeck.twitter.com/* | |
// @version 1.0 | |
// @license MIT License | |
// ==/UserScript== | |
(function(){ | |
function source() { |
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 Tweetdeck MARKING Friends and Followers | |
// @include https://tweetdeck.twitter.com/* | |
// @version 1.1 | |
// @license MIT License | |
// ==/UserScript== | |
(function(w) { | |
var TD = w.TD; |
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 Tweetdeck enable ABSOLUTE TIME | |
// @include https://tweetdeck.twitter.com/* | |
// @version 1.1 | |
// @license MIT License | |
// ==/UserScript== | |
(function(w) { | |
var TD = w.TD; |