3

NsIContentPolicyを読み、Stackoverflow全体を検索して、NsIContentPolicyを実装するための適切なチュートリアルを探しましたが、すべて無駄でした。AdblockがNsIContentPolicyを主な武器として使用していることを私は知っています。Adblockのリバースエンジニアリングは、NsIContentPolicyの実装方法を理解するのに役立ちませんでした。学習にNsIContentPolicyを使用する簡単なアドオン、またはNsIContentPolicyに関する優れたチュートリアルはありますか?

4

1 に答える 1

9

私は良いチュートリアルを知りませんが、いくつかの最小限のサンプルコードを与えることができます:

Cu.import("resource://gre/modules/XPCOMUtils.jsm");
Cu.import("resource://gre/modules/Services.jsm");

let policy =
{
  classDescription: "Test content policy",
  classID: Components.ID("{12345678-1234-1234-1234-123456789abc}"),
  contractID: "@adblockplus.org/test-policy;1",
  xpcom_categories: ["content-policy"],

  init: function()
  {
    let registrar = Components.manager.QueryInterface(Ci.nsIComponentRegistrar);
    registrar.registerFactory(this.classID, this.classDescription, this.contractID, this);

    let catMan = Cc["@mozilla.org/categorymanager;1"].getService(Ci.nsICategoryManager);
    for each (let category in this.xpcom_categories)
      catMan.addCategoryEntry(category, this.contractID, this.contractID, false, true);

    onShutdown.add((function()
    {
      for each (let category in this.xpcom_categories)
        catMan.deleteCategoryEntry(category, this.contractID, false);

      // This needs to run asynchronously, see bug 753687
      Services.tm.currentThread.dispatch(function()
      {
        registrar.unregisterFactory(this.classID, this);
      }.bind(this), Ci.nsIEventTarget.DISPATCH_NORMAL);
    }).bind(this));
  },

  // nsIContentPolicy interface implementation
  shouldLoad: function(contentType, contentLocation, requestOrigin, node, mimeTypeGuess, extra)
  {
    dump("shouldLoad: " + contentType + " " +
                          (contentLocation ? contentLocation.spec : "null") + " " +
                          (requestOrigin ? requestOrigin.spec : "null") + " " +
                          node + " " +
                          mimeTypeGuess + "\n");
    return Ci.nsIContentPolicy.ACCEPT;
  },

  shouldProcess: function(contentType, contentLocation, requestOrigin, node, mimeTypeGuess, extra)
  {
    dump("shouldProcess: " + contentType + " " +
                            (contentLocation ? contentLocation.spec : "null") + " " +
                            (requestOrigin ? requestOrigin.spec : "null") + " " +
                            node + " " +
                            mimeTypeGuess + "\n");
    return Ci.nsIContentPolicy.ACCEPT;
  },

  // nsIFactory interface implementation
  createInstance: function(outer, iid)
  {
    if (outer)
      throw Cr.NS_ERROR_NO_AGGREGATION;
    return this.QueryInterface(iid);
  },

  // nsISupports interface implementation
  QueryInterface: XPCOMUtils.generateQI([Ci.nsIContentPolicy, Ci.nsIFactory])
};

policy.init();

これは、コンテンツポリシーの実装に関する問題を調べるために使用する最小限のコンテンツポリシーの実装に由来します。これは、すべてのコンテンツポリシーの呼び出しをコンソールにダンプする以外のことは何もしません(window.dumpドキュメント)。明らかに、実際の実装では、フィールドclassDescriptionclassIDおよびcontractIDを適切なものに変更する必要があります。onShutdown私が使用しているプラ​​イベートフレームワークに属しています。この拡張機能は再起動できません。そのため、コンポーネントを「手動で」登録する必要があります。また、ブラウザセッション中にシャットダウンされた場合は、このコードを実行してコンポーネントを削除します。

完全な拡張機能をダウンロードすることもできます:testpolicy.xpi

于 2012-05-28T18:13:55.437 に答える