Skip to content

Commit 09f6a4f

Browse files
committed
chore: update readme
1 parent 8b3e706 commit 09f6a4f

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

packages/js/examples/chrome-extension/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ In the <strong>Extensions</strong> page (`chrome://extensions`), click on the re
2222
There are multiple ways to report an error, showcasing the different execution contexts in a chrome extension:
2323
- An error is automatically reported from the background worker (`background.js`) as soon as it's loaded. This is how you know Honeybadger was loaded successfully in the worker.
2424
- An error is automatically reported from the content script (`content.js`) as soon as it's loaded. This is how you know Honeybadger was loaded successfully in the content script.
25-
- To report an error from the options page (`options.html` and `options.js`):
25+
- To report an error from the options page (`options.html` and `options.js`) or the popup (`popup.html` and `popup.js`):
2626
1. Open `error-reporting.js` and replace `YOUR_API_KEY` with your Honeybadger.js API key.
2727
2. Make sure to reload the extension (see above).
2828
3. Open the Options page and click on the Report Error button.
29+
Or click on the extension icon to open the popup and click on the Report Error button.
2930
4. Check your Honeybadger.js dashboard. The error should show up after a few seconds.

packages/js/examples/chrome-extension/button.css

-5
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,3 @@ button.current {
1212
box-shadow: 0 0 0 2px white,
1313
0 0 0 4px black;
1414
}
15-
16-
button#throwError {
17-
width: 60px;
18-
height: 50px;
19-
}

packages/js/examples/chrome-extension/popup.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<button id="changeColor"></button>
1010
<br/>
1111
<br/>
12-
<button id="throwError">Throw error</button>
12+
<button id="reportErrorButton" style="width: auto">Report error!</button>
1313
<script src="popup.js"></script>
1414
</body>
1515
</html>

packages/js/examples/chrome-extension/popup.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ function setPageBackgroundColor() {
2424
}
2525

2626
// Button to throw an error and have it reported on Honeybadger
27-
const throwError = document.getElementById('throwError');
28-
throwError.addEventListener('click', async () => {
27+
const reportErrorButton = document.getElementById('reportErrorButton');
28+
reportErrorButton.addEventListener('click', async () => {
2929
// eslint-disable-next-line no-undef
3030
someUndefinedFunction();
3131
});

0 commit comments

Comments
 (0)