Open Chromagram opened 1 year ago
Maybe bug in Arc/Orion browser.
Thanks, is this something's that's confirmable or an estimate? I did also report it to Arc directly but they haven't noticed anything yet.
Also is Orion related? I don't have it myself.
Can you please check whether the background page or the actual page developer console shows any errors?
In Chrome you can access the background page at "chrome://extensions" (Enable Developer mode and then click at "background.html" at the Tampermonkey secion").
Thanks, I opened up the dev console and did a little testing:
background.html and the Console tab inside the window does not show any changes at all. Tried viewing the two sections after refreshing a specific page that should have a script running on it, still nothing.
Bizarrely, a couple days after I opened this thread, it worked for a few days. I didn't change any settings or even close Arc, it just randomly started working perfectly. Today I had to restart my computer, which restarted Arc. Since then, I'm back to it not working.
Just a quick update aside:
I'm running most of scripts on Neopets.com, a site rife with outdated Flash games but also with plenty of normal pages that run no problem. I run a separate extension called Ruffle to restore Flash content support to the site.
There's one page I visit that forces me to open in a separate tab to load the Flash content. I just did that, and when I returned to the normal site, the scripts were running. I know this won't stay forever, so would still love to look into a more permanent fix. However, it's currently running and I'm hoping that info might help decipher where it's failing in the first place.
Can you please check whether 5.0.6190 (crx) makes a difference?
Please download the crx file linked above and drag and drop it to the extensions page chrome://extensions
.
It looks like this is a separate beta plugin? I'll have to move all my scripts over and test it for a bit. As mentioned in the last comment, opening a specific Ruffle Flash fullscreen page and going back made the scripts work again temporarily. I'll try just using this plugin and seeing if it breaks at any point.
(Please fill out the issue template with your details)
Expected Behavior
Scripts that run in normal Chrome perfectly to run the same in a Chromium-style browser. In my case, it's Arc on the Mac. I'm unsure if the problem is the same on other Chromium browsers like Brave, or if it's an Arc issue.
Actual Behavior
Scripts tested in normal Chrome should appear and operate the same on different browsers that support Tampermonkey. Currently, not only do none of the scripts run, but they don't even detect in the panel. It just says "No Script is Running", when if you copy/paste the script into Tampermonkey on regular Chrome and visit the exact same page, it'll detect and run properly.
Specifications
Script
Here is just one of the scripts. It is designed to run specifically on a single Neopets.com page, solving the puzzle by itself there. On Chrome it does this no problem. On Arc (which runs Chromium), it's not detected at all and doesn't work. There are a pile of other scripts similar to this, and they all work on Chrome, but not Arc.
// ==UserScript== // @author Odd // @description Automatically solves the puzzle in the Mysterious Negg Cave. // @include https://www.neopets.com/shenkuu/neggcave/* // @name Mysterious Negg Cave Auto-Solver // @namespace Odd@Clraik // @version 1.0.2 // ==/UserScript==
var DelayMax = 10000; var DelayMin = 5000;
(function () {
})();