上図のように、Chromeのアドレスバー(オムニバー)にドメインしか表示されなくなっちゃったけど戻してーわーって時の対処法。
chrome://flags/から「Origin Chip を有効にする」と「アドレスバーの Origin Chip を有効にする」を無効に設定して再起動しましょう。
私は速攻で設定変更しましたが、どうやらGoogle神は汚いURLを隠蔽してドメインとSSL対応可否に注目させたいようなので、その思し召しに従うのも悪くないと思います。
// ==UserScript== | |
// @name NicovideoPlayingFavicon | |
// @namespace https://twitter.com/hirogasa/ | |
// @match http://www.nicovideo.jp/watch/* | |
// @description ニコニコ動画の再生中ページのFaviconを変更します。 | |
// @version 1.0 | |
// ==/UserScript== | |
(function(){ | |
var isPlaying = false; |
// ==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; |
[ | |
{ | |
"code":"0000", | |
"name":"\u65e5\u672c\u9280\u884c" | |
}, | |
{ | |
"code":"0001", | |
"name":"\u307f\u305a\u307b\u9280\u884c" | |
}, | |
{ |
FB.init({ | |
appId: '123456789', | |
version: 'v2.2', | |
xfbml: true, | |
status: true | |
}); |
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 |
I hereby claim:
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== |