Firefox3.5のシェアがIE7を抜き、トップとなったという。
→ Firefox 3.5、ブラウザ市場でシェア1位に (2009-12-23)
火曜日, 12月 22, 2009
土曜日, 12月 19, 2009
CIAと外務省サイトを検索するChrome拡張機能
CIAと外務省サイトを検索するChrome拡張機能を作ってみました。
→ CIA Search
拡張機能は、まだ Chrome のベータ版でしか機能しませんが、すでに多くの拡張機能がアップされています。
ポップアップのウィンドウでは、ドロップダウンリストがそのままでは実装できないので注意が必要です。
→ CIA Search
拡張機能は、まだ Chrome のベータ版でしか機能しませんが、すでに多くの拡張機能がアップされています。
ポップアップのウィンドウでは、ドロップダウンリストがそのままでは実装できないので注意が必要です。
木曜日, 12月 17, 2009
Chrome Extensions
Google Chrome browser seem to get the momentum now that many extensions are available.
→ Chrome Extensions
Sensible enough, it runs Javascript. The objects are custom made, though, and it will take time to get them all.
→ Google Chrome Extensions (Labs)
A code like this will set a listener. The specified callback function will be invoked when the icon is clicked.
When the extension is invoked, it creates popup window. It could create empty background window. The current selected window is called contents window and scripts and css's etc for the window can be specified in .json file.
→ Overview
Google Chrome 拡張機能では、それぞれ任意のページ(background), サイトを開いたときに起動する(contents), アイコンをクリックすると表示される(popup)などで指定するコードを起動できる。
→ Chrome Extensions
Sensible enough, it runs Javascript. The objects are custom made, though, and it will take time to get them all.
→ Google Chrome Extensions (Labs)
A code like this will set a listener. The specified callback function will be invoked when the icon is clicked.
chrome.browserAction.onClicked.addListener(function(tab) {
alert(tab.url);
});
When the extension is invoked, it creates popup window. It could create empty background window. The current selected window is called contents window and scripts and css's etc for the window can be specified in .json file.
→ Overview
Google Chrome 拡張機能では、それぞれ任意のページ(background), サイトを開いたときに起動する(contents), アイコンをクリックすると表示される(popup)などで指定するコードを起動できる。
水曜日, 12月 09, 2009
Chromeの拡張機能が利用可能に - Googleがベータ提供開始
Chrome に拡張機能がついたベータ版がでたそうです。
→ Chromeの拡張機能が利用可能に - Googleがベータ提供開始 (2009-12-9)
ベータ版のダウンロードが必要です。
拡張機能のページで検索できるようです。
→ Chromeの拡張機能が利用可能に - Googleがベータ提供開始 (2009-12-9)
ベータ版のダウンロードが必要です。
拡張機能のページで検索できるようです。
土曜日, 12月 05, 2009
ウルドゥー語の表示
登録:
投稿 (Atom)
Qt: 外部プログラムを起動する
Qt/C++ のアプリは、外部へ直接アクセスできます。これはネットアプリでは不可能な Qt のメリットです。 外部プログラムを起動することもできます。QProcess::startDetached() を使うと独立したプロセスを立ち上げることができます。 この QProces...
-
コンデンサマイク 極性があります コンデンサマイクがようやく届きました。モジュールではないのでそのままでは信号が弱いので使えません。信号を増幅する必要があります。 ちょっとした手間ですが、首尾よく動いてくれました。この回路の応用で、使えるマイクが出来ます。 ...
-
Flask/SQLAlchemy 使ってる方、jinja で困ってませんか? 本体で Python の関数を書いてもいいんですが、テンプレートでも関数が呼べます。 日付を出したい場合、フォーマットなら strftime() が使えます。 わざわざ文字列を作って渡す必...
-
PowerBuilder では Time, Date, DateTime などという型があります。 デフォルトの表示形式から変更する場合は String() 関数を使います。 String(Date('1/12/2016'),'yyyy-mm-dd...