-
Notifications
You must be signed in to change notification settings - Fork 2
feat: implement OCR client, worker, and types for text detection #232
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
f823b0e
feat: implement OCR client, worker, and types for text detection
piquark6046 24a61ae
fix: update type definitions and improve type safety in various files
piquark6046 ab66dc1
chore: re-implement `setTimeout` mock func
piquark6046 6b26a6a
Potential fix for pull request finding 'Unused variable, import, func…
piquark6046 45170f5
Potential fix for pull request finding 'Unused variable, import, func…
piquark6046 0bb58e1
Potential fix for pull request finding 'Unused variable, import, func…
piquark6046 7a89d36
Potential fix for pull request finding 'Unused variable, import, func…
piquark6046 5d79e3c
Potential fix for pull request finding 'Unused variable, import, func…
piquark6046 5d12915
Potential fix for pull request finding 'Unused variable, import, func…
piquark6046 879519a
Potential fix for pull request finding 'Unused variable, import, func…
piquark6046 6116d56
Potential fix for pull request finding 'Unused variable, import, func…
piquark6046 3b43ced
fix: hide detected ad elements by setting display to none
piquark6046 7c5cf94
fix: TS6 migration
piquark6046 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,5 +2,8 @@ | |
| "extends": "../tsconfig.json", | ||
| "include": [ | ||
| "source/**/*.ts" | ||
| ] | ||
| ], | ||
| "compilerOptions": { | ||
| "types": ["node"] | ||
| } | ||
| } | ||
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| import '@violentmonkey/types' |
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| export function WaitForElement(Selector: string, Root: HTMLElement | Document = document.documentElement): Promise<HTMLElement> { | ||
| return new Promise((Resolve) => { | ||
| const Found = Root.querySelector(Selector) | ||
|
|
||
| if (Found && Found instanceof HTMLElement) { | ||
| Resolve(Found) | ||
| return | ||
| } | ||
|
|
||
| const Observer = new MutationObserver(() => { | ||
| const El = Root.querySelector(Selector) | ||
|
|
||
| if (El && El instanceof HTMLElement) { | ||
| Observer.disconnect() | ||
| Resolve(El) | ||
| } | ||
| }) | ||
|
|
||
| Observer.observe(Root, { | ||
| subtree: true, | ||
| childList: true, | ||
| attributes: true | ||
| }) | ||
| }) | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.