| Filter | Description | Example |
|---|---|---|
| allintext | Searches for occurrences of all the keywords given. | allintext:"keyword" |
| intext | Searches for the occurrences of keywords all at once or one at a time. | intext:"keyword" |
| inurl | Searches for a URL matching one of the keywords. | inurl:"keyword" |
| allinurl | Searches for a URL matching all the keywords in the query. | allinurl:"keyword" |
| intitle | Searches for occurrences of keywords in title all or one. | intitle:"keyword" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const getNodeId = async (element: Element) => { | |
| const selectors = getUniqueSelectors(element) | |
| const root = (await cdp().send("DOM.getDocument", { depth: -1 })).root | |
| let nodeId = root.nodeId | |
| for (const selector of selectors) { | |
| if (nodeId !== root.nodeId) { | |
| const next = await cdp().send("DOM.describeNode", { nodeId }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { memo, useCallback, useEffect, useRef, useState } from 'react'; | |
| import { | |
| useCombobox, | |
| Combobox, | |
| Group, | |
| CheckIcon, | |
| ScrollArea, | |
| InputBase, | |
| ActionIcon, | |
| type InputBaseProps, |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| // -------------------------------------------------------------------- | |
| // JSHint Configuration, Strict Edition | |
| // -------------------------------------------------------------------- | |
| // == Enforcing Options =============================================== | |
| // | |
| // These options tell JSHint to be more strict towards your code. Use | |
| // them if you want to allow only a safe subset of JavaScript, very |