Created
November 5, 2010 02:16
-
-
Save masahitojp/663545 to your computer and use it in GitHub Desktop.
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
// user script for efreedom | |
// version 0.01 ALPHA! | |
// 2010-11-05 | |
// First Commit | |
// -------------------------------------------------------------------- | |
// | |
// This is a Greasemonkey user script. | |
// | |
// To install, you need Greasemonkey: http://greasemonkey.mozdev.org/ | |
// Then restart Firefox and revisit this script. | |
// Under Tools, there will be a new menu item to "Install User Script". | |
// Accept the default configuration and install. | |
// | |
// To uninstall, go to Tools/Manage User Scripts, | |
// select this, and click Uninstall. | |
// | |
// -------------------------------------------------------------------- | |
// | |
// ==UserScript== | |
// @name efeedom_lang | |
// @namespace http://d.hatena.ne.jp/Ehren/ | |
// @description Traslate Link of efreedom is displayed up. | |
// @require http://code.jquery.com/jquery-1.3.2.min.js | |
// @include http://*.efreedom.com/* | |
// ==/UserScript== | |
(function(){ | |
$("#content").prepend($("#languages")); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment