ikemonn's blog

技術ネタをちょこちょこと

2013-12-17から1日間の記事一覧

2013年アジアでホットだった検索トレンドトピック4選

1.アジアで作られたアプリの増加(The rise of Asian apps) 今年はアジアで作られたアプリが地域を超えて全世界まで広がった。 Googleの説明は以下のように言っている。 「Lineが台湾やインドネシアで最も検索されたリストにおり、WeChatはマレーシアで, パズ…

【HTML】input type="button" でリンク用ボタンを作る

<input type="button" value="リンク" onClick="location.href='http://google.com'"> <input type="button" value="リンク" onClick="window.open('http://google.com')">

【Chrome-Extension】Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'self' chrome-extension-resource:".が出た時

インラインでJavaScriptを書かない manifest_version 2からインラインでJSを書くと下記のエラーが出るので、JSを外部読み込みにすれば解決する。 Refused to execute inline script because it violates the following Content Security Policy directive: "…