SET-TIMER::25min GLOBAL-ALIGN::left ALIGN::center CHAPTER::拡張機能を作ってみよう [[EM:Part2]] ---- HEADER::拡張機能を作ってみよう 拡張機能を 作ってみよう ---- の 前に ---- コードの量が多いので ここで入力するコードの 入力済みの物を用意しました ---- ALIGN::right [[https://piro.sakura.ne.jp/xul/doc/|https://piro.sakura.ne.jp/xul/doc/fxdevcon2007summer/samples.zip]] [[fxdevcon2007summer/samples.zip|https://piro.sakura.ne.jp/xul/doc/fxdevcon2007summer/samples.zip]] ---- タイピングが 追いつかない人は こちらをどうぞ ---- ALIGN::CENTER Phase 1 テスト用に インストール してみる ---- 教科書 33ページ ---- 必要な ファイルを 用意する ---- install.rdf chrome.manifest content/overlay.xul ---- install.rdf ---- [[PRE: helloworld@piro.sakura.ne.jp 2 Hello, World! 0.1 My first extension. Piro https://piro.sakura.ne.jp/helloworld/ {ec8030f7-c20a-464f-9b0e-13a3a9e97384} 2.0 2.0.0.* ]] 01-install.rdf ---- 別の書き方(意味は同じ) [[PRE: ]] ---- chrome.manifest ---- [[PRE: content helloworld content/ ]] ---- [[PRE: content helloworld content/ ]] file:///c:/extensions/helloworld/content/    ↓ chrome://helloworld/content/ にバインドされる ---- [[EM:Chrome URL]] ・chrome://~ でアクセスされると 最初からUniversalXPConnect 特権がある状態になる ・環境非依存の絶対パスとして 使える ---- [[PRE: overlay chrome://browser/content/browser.xul chrome://helloworld/content/overlay.xul ]] ---- [[PRE: overlay chrome://browser/content/browser.xul chrome://helloworld/content/overlay.xul ]] browser.xulに と書くのと同じ効果 ---- 全体 [[PRE: content helloworld content/ overlay chrome://browser/content/browser.xul chrome://helloworld/content/overlay.xul ]] 02-chrome.manifest ---- overlay.xul ---- [[PRE: ]] 03-overlay.xul ---- 試しに インストール してみよう ---- テスト インストール ---- 1. ポインタファイルを作る 2. プロファイルフォルダへ移動 3. Firefox再起動 4. (゚д゚)ウマー ---- [[EM:ポインタファイル]] ---- helloworld@piro.sakura.ne.jp という名前の [[EM:テキストファイル]] ---- 内容 [[PRE: C:\extensions\helloworld ]] 04-helloworld@piro.sakura.ne.jp ---- プロファイル内の extensionsフォルダ に移動 ---- やって みよう ---- Firefox 再起動 ---- ALIGN::CENTER Phase 2 時計機能を実装 ---- 教科書 35ページ ---- overlay.xul ---- menuitemに oncommand イベントハンドラで 挙動を記述する ---- oncommand="window.openDialog( 'chrome://helloworld/content/clock.xul', 'Clock','chrome,centerscreen,modal');" ---- 全体 [[PRE: ]] 05-overlay.xul ---- clock.xul ---- [[PRE: