-
Notifications
You must be signed in to change notification settings - Fork 442
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
Script not getting injected in https://kemono.su/ website #2323
Comments
This is working fine here. Please check the page console (ctrl+shift+j) for errors, also please check the service worker state -> #2221 (comment) |
I'm having a similar issue It works with no issues on other websites I'm on Chromium 131.0.6778.265 too |
Hi @derjanb, 95% of times when I load the site the script doesn't get loaded, and yes I did check the page console. One of the observation particular to this site is its using Wasm. |
Same problem here. |
@Leproide This script uses an invalid You have to change the
See https://developer.chrome.com/docs/extensions/develop/concepts/match-patterns |
Still can't reproduce. This example script logs the new URLs all the time. I can get the script disappear from the page script list by navigating to another page and then back, which seems to be a back-forward-cache issue, but new URLs are still being logged... // ==UserScript==
// @name Log Location
// @namespace http://tampermonkey.net/
// @version 2024-08-29
// @description try to take over the world!
// @author You
// @match https://*/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant GM_info
// @grant window.onurlchange
// ==/UserScript==
const newURL = () => console.log('#####', location.href);
window.addEventListener('urlchange', newURL);
console.log(GM_info);
newURL(); |
Hi @derjanb, Do you know any option to enable tampermonkey log, so that I can reproduce the issue & share the log. PS: I tried changing match to include, the issue is still reproducible. |
Hi, EDIT: |
Expected Behavior
Expected tampermonkey script to be injected in kemono.su website load.
Actual Behavior
No tampermonkey scripts are getting injected in kemono.su website load. Even in chrome devtool->source->Page no Tampermokey script file is available,
Specifications
Script
Test script
The text was updated successfully, but these errors were encountered: