Skip to content

Commit a5fd109

Browse files
committed
[0.6.0]
1 parent 767215e commit a5fd109

2 files changed

Lines changed: 3 additions & 11 deletions

File tree

README.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ You need Firefox 60+ to run this extension.
2727
The following Firefox bugs are related:
2828
* [~~Bug 1311177~~](https://bugzilla.mozilla.org/show_bug.cgi?id=1311177) - (fixed in Firefox 60) Implement the devtools.network.getHAR API method
2929
* [~~Bug 1311171~~](https://bugzilla.mozilla.org/show_bug.cgi?id=1311171) - (fixed in Firefox 60) Implement the devtools.network.onRequestFinished API event
30-
* [Bug 1436665](https://bugzilla.mozilla.org/show_bug.cgi?id=1436665) - onRequestFinished event should be sent even if the Netmonitor UI isn't initialized
31-
* [Bug 1434855](https://bugzilla.mozilla.org/show_bug.cgi?id=1434855) - HAR export is very slow
30+
* [~~Bug 1436665~~](https://bugzilla.mozilla.org/show_bug.cgi?id=1436665) - (fixed in Firefox 61) onRequestFinished event should be sent even if the Netmonitor UI isn't initialized
31+
* [~~Bug 1434855~~](https://bugzilla.mozilla.org/show_bug.cgi?id=1434855) - (fixed in Firefox 60) HAR export is very slow
3232

3333
## Scopes
3434
There are following scopes related to the architecture of this extension.
@@ -47,16 +47,9 @@ Install the extension into your browser (Firefox & Chrome supported).
4747
HAR API implemented in `harapi.js` file is automatically injected
4848
into your page (the file is available in `lib` directory in this repo).
4949

50-
Note that the Network panel has to be opened at least once (to initialize
51-
HTTP tracking backend) in order to make HAR API work as expected.
52-
This limitation will be soon fixed.
53-
See also [bug 1436665](https://bugzilla.mozilla.org/show_bug.cgi?id=1436665).
54-
5550
An example script looks like as follows:
5651

5752
```
58-
<script type="text/javascript" src="harapi.js"></script>
59-
6053
HAR.triggerExport().then(harLog => {
6154
console.log(harLog);
6255
});

manifest.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22
"name": "HARExportTrigger",
33
"author": "Jan Odvarko",
44
"short_name": "HARExportTrigger",
5-
"version": "0.5.0",
5+
"version": "0.6.0",
66
"devtools_page": "src/devtools.html",
77
"description": "Trigger HAR export from within a web page",
88
"manifest_version": 2,
9-
"default_locale": "en",
109
"homepage_url": "https://github.com/devtools-html/har-export-trigger/",
1110
"applications": {
1211
"gecko": {

0 commit comments

Comments
 (0)