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 73ea932 commit bb601cfCopy full SHA for bb601cf
packages/chrome/src/IsolatedFrame.tsx
@@ -31,6 +31,7 @@ import {
31
iconAdd,
32
iconCopy,
33
iconSave,
34
+ iconSearch,
35
} from "./icons";
36
37
import type { Chromebound, Framebound } from "../../inject/src/types";
@@ -656,6 +657,7 @@ function pageContextItems(
656
657
return [
658
{
659
label: "Search",
660
+ icon: iconSearch,
661
action: () => {
662
const query = selection.toString();
663
if (query) {
@@ -669,6 +671,7 @@ function pageContextItems(
669
671
},
670
672
673
label: "Copy",
674
+ icon: iconCopy,
675
676
navigator.clipboard.writeText(selection.toString());
677
0 commit comments