Skip to content

Commit

Permalink
Renamed to DOMProfiler, again
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Brosset committed Nov 4, 2014
1 parent ea41e02 commit e6612f9
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ Note that this addon will only work when using the devtools in a local browser t
## How to build and run

* [install JPM](https://www.npmjs.org/package/jpm)
* `git clone https://github.com/captainbrosset/pagerecorder`
* `cd pagerecorder`
* `git clone https://github.com/captainbrosset/domprofiler`
* `cd domprofiler`
* `jpm run -b /path/to/firefox/nightly/bin`
Binary file not shown.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ const {RecorderPanel} = require("data/panel");
const {gDevTools} = Cu.import("resource:///modules/devtools/gDevTools.jsm", {});

gDevTools.registerTool({
id: "pagerecorder",
id: "domprofiler",
icon: self.data.url("images/icon.svg"),
invertIconForLightTheme: true,
url: self.data.url("panel.html"),
label: "Page Recorder",
tooltip: "Record mutations and events on the page",
label: "DOM Profiler",
tooltip: "Record DOM mutations and events on the page",

isTargetSupported(target) {
return target.isLocalTab;
Expand Down
9 changes: 8 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
{
"title": "DOM Profiler",
"name": "domprofiler",
"id": "domprofiler@patrickbrosset.org",
"homepage": "https://github.com/captainbrosset/domprofiler",
"repository" : {
"type" : "git",
"url" : "git://github.com/captainbrosset/domprofiler.git"
},
"version": "0.0.1",
"description": "A FirefoxDevTools extension that records DOM mutations and DOM event handlings on the page",
"main": "index.js",
"author": "Patrick Brosset",
"contributors": ["Tim Nguyen"],
"engines": {
"firefox": ">=33.0a1"
"firefox": ">=33.0a1 && <=37.0"
},
"license": "MIT"
}

0 comments on commit e6612f9

Please sign in to comment.