We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1a8084 commit e17fc2bCopy full SHA for e17fc2b
browser-extension/src/entrypoints/content.ts
@@ -2,6 +2,10 @@ import OverType from "../overtype/overtype";
2
3
export default defineContentScript({
4
main() {
5
+ if (window.location.hostname !== "github.com") {
6
+ return;
7
+ }
8
+
9
const ghCommentBox = document.getElementById("new_comment_field") as
10
| HTMLTextAreaElement
11
| undefined;
0 commit comments