2013-04-01から1ヶ月間の記事一覧
I released crx_unpack gem. This gem unpacks Google Chrome extension package (crx) and extracts contents of extension from packed zip archive. require 'crx_unpack' data = open('extension.crx', 'rb').read crx = CrxUnpack.unpack(data) crx.zip…
I released crx_appid gem. This gem calculates Google Chrome extension ID (unique for each extensions) from private key. require 'crx_appid' pem = open("extension.pem").read CrxAppid.calculate(pem) CrxAppid.calculate_from_file("extension.pe…
Update: オフィシャル SVG ロゴデータが公開されました http://staff.hatenablog.com/entry/2013/04/10/105917 https://github.com/hatena/Hatena-Blog-Logo はてなブログのロゴを SVG で描いてみた。 オリジナルのロゴ画像(png)を横に並べてブラウザで拡大…