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
let PLUGIN_INFO = | |
<KeySnailPlugin> | |
<name>Speaker Deck</name> | |
<description>Manipulate Speaker Deck</description> | |
<updateURL>https://gist.github.com/958/6724744/raw/8ad2d8736534936917d525040693ba8736593b49/speakerdeck.ks.js</updateURL> | |
<version>0.0.1</version> | |
<author>958</author> | |
<license>MIT</license> | |
<minVersion>1.8.0</minVersion> | |
<detail><![CDATA[ |
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
--- old/components/tombfix.js | |
+++ new/components/tombfix.js | |
@@ -314,13 +314,22 @@ | |
if(greasemonkey){ | |
greasemonkey = greasemonkey.getService().wrappedJSObject; | |
- env.addBefore(greasemonkey, 'evalInSandbox', function(){ | |
- for(var i=0, len=arguments.length ; i<len ; i++){ | |
- var arg = arguments[i]; | |
- if(typeof(arg) == 'object'){ |
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
--- old/bmany.ks.js | |
+++ new/bmany.ks.js | |
@@ -253,8 +253,7 @@ | |
if (item) | |
aContainer.push(item); | |
} | |
- else if (PlacesUtils.nodeIsFolder(childNode) | |
- && !PlacesUtils.nodeIsLivemarkContainer(childNode)) | |
+ else if (PlacesUtils.nodeIsFolder(childNode)) | |
{ |
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
// Info | |
var PLUGIN_INFO = | |
<KeySnailPlugin> | |
<name>Tabgroup Controller</name> | |
<description>Manipulate Tabgroup</description> | |
<description lang="ja">Tabgroup を操作</description> | |
<updateURL>https://gist.github.com/958/3630309/raw/tabgroup.ks.js</updateURL> | |
<author>958</author> | |
<version>0.0.2</version> |
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
// Info | |
var PLUGIN_INFO = | |
<KeySnailPlugin> | |
<name>FoxAge2ch Controller</name> | |
<description>Manipulate FoxAge2ch</description> | |
<description lang="ja">FoxAge2ch を操作</description> | |
<author>958</author> | |
<updateURL>https://gist.github.com/958/3608004/raw/foxage2ch.ks.js</updateURL> | |
<version>0.0.2</version> |
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
// Info | |
var PLUGIN_INFO = | |
<KeySnailPlugin> | |
<name>launcher</name> | |
<description>Application launcher</description> | |
<description lang="ja">アプリケーションを起動</description> | |
<updateURL>https://gist.github.com/958/3608000/raw/launcher.ks.js</updateURL> | |
<author>958</author> | |
<version>0.0.2</version> |
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
@@ -1518,7 +1518,10 @@ | |
lastKey : "extensions.keysnail.plugins.twitter_client.last_status_id", | |
oauth : gOAuth, | |
lastIDHook : $U.bind(Notifier.updateAllStatusbars, Notifier), | |
- beginCount : gTimelineCountBeginning | |
+ beginCount : gTimelineCountBeginning, | |
+ params : { | |
+ include_entities : true | |
+ } | |
} |
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
// ============================================================ // | |
// Inside of PRESERVE area. | |
// ============================================================ // | |
function transposeSubString(input, beg, end, to) { | |
let txt = input.value; | |
let head = txt.slice(0, beg); | |
let left = txt.slice(beg, end); | |
let right = txt.slice(end, to); |
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
// Quote from the plugin help | |
var local = {}; | |
plugins.options["site_local_keymap.local_keymap"] = local; | |
function fake(k, i) function () { key.feed(k, i); }; | |
function pass(k, i) [k, fake(k, i)]; | |
function ignore(k, i) [k, null]; | |
local["^http://www.google.(co.jp|com)/reader/view/"] = [ | |
['a', fake('k')] |