We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
im wondering where to make changes so that it supports a website that I want?
thanks
The text was updated successfully, but these errors were encountered:
Before modify extension codes, please ensure Node.js development environment is configured in your computer.
If you want capture more video request from other website. You can modify patterns in ./src/config.js
./src/config.js
And you can ask me in here if you meet other problem when you trying to modify this extension
Sorry, something went wrong.
thanks i did take a look at ./src/config.js
so how come there are PROCESSABLE_M3U8_PATTERN and VIDEO_PAGE_PATTERN ? does it mean i only need to add pattern in VIDEO_PAGE_PATTERN ?
Actually, the logic of capture the video links is as follows:
onBeforeRequest
M3U8_PATTERN_ARRAY
VIDEO_PAGE_PATTERN
PROCESSABLE_M3U8_PATTERN
base64Encoded
Example, if you want to add a site support, you need to do these modifications:
*://example.com/m3u8/*
{ pattern: /example\.com\// }
{ pattern: /example\.com/, type: 'example' }
SUPPORTED_PAGE_TYPE
AvgleDownloader
Avgle
By the way, I am optimizing the script. You can keep an eye on it.
No branches or pull requests
im wondering where to make changes so that it supports a website that I want?
thanks
The text was updated successfully, but these errors were encountered: