I hereby claim:
- I am hirogasa on github.
- I am hirogasa (https://keybase.io/hirogasa) on keybase.
- I have a public key ASBwB1Od-Dvvogf5ENZe4yGrplSqstr7ee80QwkgqtKCHAo
To claim this, I am signing this object:
| // ==UserScript== | |
| // @name Slack Redirector | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://*.slack.com/archives/* | |
| // @grant none | |
| // ==/UserScript== |
I hereby claim:
To claim this, I am signing this object:
| Pod::Spec.new do |s| | |
| s.name = "RMUniversalAlert" | |
| s.version = "0.7" | |
| s.summary = "Wrapper for UIAlertView / UIActionSheet / UIAlertController for targeting all iOS versions" | |
| s.homepage = "https://github.com/yujiroarai/RMUniversalAlert" | |
| s.license = { :type => 'MIT', :file => 'LICENSE' } | |
| s.author = "Ryan Maxwell" | |
| s.source = { :git => "https://github.com/yujiroarai/RMUniversalAlert.git", :tag => '0.7' } | |
| s.source_files = 'RMUniversalAlert.{h,m}', 'RMPopoverPresentationController.{h,m}' | |
| s.requires_arc = true |
| FB.init({ | |
| appId: '123456789', | |
| version: 'v2.2', | |
| xfbml: true, | |
| status: true | |
| }); |
| [ | |
| { | |
| "code":"0000", | |
| "name":"\u65e5\u672c\u9280\u884c" | |
| }, | |
| { | |
| "code":"0001", | |
| "name":"\u307f\u305a\u307b\u9280\u884c" | |
| }, | |
| { |
| // ==UserScript== | |
| // @name Nicovideo Community's Video Redirecter | |
| // @version 0.1 | |
| // @namespace http://blog.livedoor.jp/hirogasa/ | |
| // @description ニコニコ動画のコミュニティ動画から通常の動画ページに自動でリダイレクトします。 | |
| // @include http://www.nicovideo.jp/watch/* | |
| // ==/UserScript== | |
| (function() { | |
| if(document.body.innerHTML.match(/<a href="watch\/([^"]+)">元の動画を見る/)){ | |
| location.href = "http://www.nicovideo.jp/watch/" + RegExp.$1; |
| // ==UserScript== | |
| // @name NicovideoPlayingFavicon | |
| // @namespace https://twitter.com/hirogasa/ | |
| // @match http://www.nicovideo.jp/watch/* | |
| // @description ニコニコ動画の再生中ページのFaviconを変更します。 | |
| // @version 1.0 | |
| // ==/UserScript== | |
| (function(){ | |
| var isPlaying = false; |