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 autoindent | |
// @desc Performs basic auto-indentation on ENTER. | |
// @include main | |
// @include chrome://xqjs/content/xqjs.xul | |
// @include chrome://stylish/content/edit.xul | |
// @include chrome://keyconfig/content/edit.xul | |
// @include chrome://firegestures/content/edit.xul | |
// @compat Fx3.6+ | |
// @author satyr |
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
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document url-prefix(http://), url-prefix(https://) { | |
a[href^="http://ime.nu/"] | |
{ | |
-moz-binding: url('data:text/xml;charset=utf-8, | |
<?xml version="1.0"?> | |
<bindings xmlns="http://www.mozilla.org/xbl"> | |
<binding id="aaa"> | |
<implementation> | |
<constructor><![CDATA[ |
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 new_script | |
// @namespace http://efcl.info/ | |
// @description ファイルの作成→書き込み | |
// @author azu | |
// @homepage http://efcl.info/ | |
// @twitter https://twitter.com/azu_re | |
// ==/UserScript== | |
// ファイルパスにcontentを入れたファイルを作成する。 | |
// pathはファイル名のみだとスクリプトと同じ場所に作成する |
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
/* | |
* List of ES3 Incompatibilities introduced by ES5. | |
* | |
*/ | |
/* | |
* From Annex E: | |
*/ |
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
>> | |
Hi, | |
We apologize, but the only way we will be able to verify ownership of this account is if you reply to this email with an attached color image of your government-issued photo identification confirming your full name and date of birth. Rest assured that we will permanently delete your ID from our servers once we have used it to verify the authenticity of your account. | |
Please note that we will not be able to process your request unless you send in proper identification. We apologize for any inconvenience this may cause. | |
Thanks, | |
<< |
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
/** | |
* compatible-event.js | |
* | |
* @version 0.9.4b | |
* @author think49 | |
* @url https://gist.github.com/882821 | |
*/ | |
'use strict'; |
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
connect(grobal, 'environment-load', function(){ | |
var gm = Cc['@greasemonkey.mozdev.org/greasemonkey-service;1']; | |
if(gm){ | |
gm = gm.getService().wrappedJSObject; | |
addBefore(gm, 'evalInSandbox', function(){ | |
for(var i=0, len=arguments.length ; i<len ; i++){ | |
var arg = arguments[i]; | |
if(typeof(arg) == 'object'){ | |
arg.GM_addStyle = function(){ | |
alert('patched'); |
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
Drop in replace functions for setTimeout() & setInterval() that | |
make use of requestAnimationFrame() for performance where available | |
http://www.joelambert.co.uk | |
Copyright 2011, Joe Lambert. | |
Free to use under the MIT license. | |
http://www.opensource.org/licenses/mit-license.php |
OlderNewer