-
Notifications
You must be signed in to change notification settings - Fork 41
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
Add Support For More APIs #33
Comments
Tell me the script and describe which important function is missing particularly. |
This script in particular Also this script There's no missing function because they don't work |
The first script is now running well. The second one is running, but its function may not work since Android Chrome doesn't support |
As a solution, you may ask the original author to follow this advice: https://github.com/orgs/community/discussions/25343 |
First script works like a charm, as for the second one I contacted the author and waiting for an answer. So for now (hopefully for ever) my issue is solved. |
Thanks for your comments! The second script is now working as well. The script is consuming a lot of RAM. (Persionally, I conjecture there is better way to remove AD redirections.) |
I write a simple script removing all ADs there by blocking javascripts: // ==UserScript==
// @name Disable ADS - Rarbg
// @namespace JingMatrix
// @match https://rarbgunblocked.org/*
// @run-at document-start
// ==/UserScript==
const meta = document.createElement("meta");
meta.setAttribute("http-equiv", "Content-Security-Policy");
meta.setAttribute("content", "script-src 'none'");
try {
document.head.append(meta);
} catch {
setTimeout(() => {
document.head.append(meta);
}, 0);
} It works perferctly for ChromeXt, not sure for other userscript engines. |
But wouldn't disabling JavaScript cause some down sides? Like Limits the website's functions? |
Also i didn't understand this
So does the script bypass the captcha or the captcha is disabled? |
I think the captcha is disabled. |
Captcha isn't disabled but there's no ads and the website works simple and fast |
Mainly i use the script for the captcha solver it makes using the website easier |
Beside the script works great now it's Supported! 👍 |
Hi! This script has every supported API and yet doesn't work, can you check it please |
Fixed, it was url matching problem. |
👏🔥 Thanks |
@MohamadBayz , I also appreciate your help of finding and reporting bugs. |
I'm loving this project and Happy to help in any way possible. |
Hi again! A usersctipt I'm trying to use has |
It is the problem of the matching urls. |
U r right sorry for my ignorance I didn't notice that. Thanks |
Hi, i Have a Particular Script That Requires Some API Which is Not Supported by Chrome XT Unfortunately and I'm asking to support them.
Required APIs:
grant (GM_getValue, GM_setValue, GM_addValueChangeListener, GM_registerMenuCommand, GM_download)
The text was updated successfully, but these errors were encountered: