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
var sys = require("sys"); | |
var fs = require('fs'); | |
var GitHubApi = require("./github").GitHubApi; | |
var githubAPI = new GitHubApi(true); | |
var issuesAPI = githubAPI.getIssueApi(); | |
username = "repoUsername"; | |
repo = "repoName"; |
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 GM_xhr test | |
// @namespace gmTest | |
// @include * | |
// @version 0.1 | |
// ==/UserScript== | |
GM_xmlhttpRequest({ | |
method: "GET", |
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 UserScriptLoader.uc.js | |
// @author Griever | |
// @include main | |
// @description Greasemonkey っぽいもの | |
// @version 0.1.6.1 | |
// @note 0.1.6.1 uAutoPagerize との連携ができなかったのを修正 | |
// @note 0.1.6.1 .user.js 間での連携は多分できません。。 | |
// @note 0.1.6 色々修正。unsafeWindow 使ってて動かなかった物が動くかも | |
// @note 0.1.6 Firefox 3.6 は切り捨てた |
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 Github: unfold commit history | |
// @namespace http://github.com/johan/ | |
// @include https://github.com/*/commits* | |
// @include http://github.com/*/commits* | |
// @match https://github.com/*/commits* | |
// @match http://github.com/*/commits* | |
// @version 1.7 | |
// @require http://userscripts.org/scripts/source/76422.user.js | |
// ==/UserScript== |
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 Console Log [TEST] | |
// @author Erik Vold | |
// @namespace test | |
// @version 0.1.2 | |
// @include http://erikvold.com/* | |
// @exclude http://*google* | |
// ==/UserScript== | |
console.log("user script console.log test"); |
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 View Add-on Compatibility Reports | |
// @namespace http://userscripts.org/scripts/show/61398 | |
// @version 0.1 | |
// @description Adds a link to add-on compatibility reports to addons.mozilla.org. | |
// @include https://addons.mozilla.org/* | |
// @include https://preview.addons.mozilla.org/* | |
// @author http://userscripts.org/users/fcp | |
// @license This program is in the public domain. | |
// ==/UserScript== |
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== | |
// @include main | |
// @compatibility Firefox 4.0+ | |
// ==/UserScript== | |
document.getElementById('cmd_find').setAttribute('oncommand', 'gFindBar.hidden ? gFindBar.onFindCommand() : gFindBar.close();'); |
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
/* Imports a commonjs style javascript file with loadSubScrpt | |
* By Erik Vold <[email protected]> http://erikvold.com/ | |
* | |
* @param src (String) | |
* The url of a javascript file. | |
*/ | |
(function(global) { | |
var modules = {}; | |
global.require = function require(src) { | |
if (modules[src]) return modules[src]; |
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
var self = require("self"); | |
var us = require("userstyles"); | |
exports.main = function() { | |
var url = self.data.url("black-google.css"); | |
us.load(url); | |
}; |
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
/* Includes a javascript file with loadSubScript | |
* By Erik Vold <[email protected]> http://erikvold.com/ | |
* | |
* @param src (String) | |
* The url of a javascript file to include. | |
*/ | |
(function(global) global.include = function include(src) { | |
var o = {}; | |
Components.utils.import("resource://gre/modules/Services.jsm", o); | |
var uri = o.Services.io.newURI( |