Periodic tab reload – Vivaldi Browser snapshot 2056.19
-
Please fix VB-1234567 I can't use the browser otherwise !!1!
-
@Ruarí What version of macOS were they using? I'm on macOS 10.14.6 right now.
-
while you guys are improving screenshot functionality, be sure to fix VB-70249...
-
Vivaldi 3.3 is out and bug VB-70371 still exists and is preventing me from using the latest Vivaldi versions! The bug is very troublesome and interferes with the way I use Vivaldi. It seems like an easy bug to fix so please fix it soon--hopefully in a minor update for 3.3!
-
@Gwen-Dragon
what about PiP Volume control for Vavaldi? Do you plan to implement it???? Other browsers have it I can't use Vrivaldi otherwise :face_with_open_mouth_cold_sweat:
-
@Gwen-Dragon you are my herooooo Love Vrovaldi!1! zomg!!11
-
@npro Heeheehee -- oooh but aren't you being the cheeky & sarcastic devil today! Love it.
-
@Gwen-Dragon Nooooo it's not future I have reported it back in 1992!!! Please
-
@Steffie hi lady, I don't know what you mean with sarcastic... I love Vavaldi been using it since 2019 but it lacks features like shopping carts and selfie and volume control :disappointed_but_relieved_face: , but can I ask you something... what is this thread?
-
@npro anyway... love you all laters
-
@npro sorry I'm back... I meant 'til next desktop snapshot, anyway bye!
-
They stopped working in this snapshot custom JS scripts.
JS scripts work if you replace JS files in the application\3.4.2056.19\resources folder for files from the previous one a snapshot.
The developers decided to disable this feature use JS user scripts? -
@altcode: I'd need to check but I can say they always run betas. That said, there is nothing in this code area that would make it platform specific and thus no reason to suspect that would matter.
-
@Gwen-Dragon
I'm not writing about an official opportunity.
I am writing about the actual possibility of using JS user scripts, which was before this snapshot.
If this opportunity is finally closed, VIVALDI will lose half of its appeal to me. -
@ruarí: it does take a pause but the 'pause icon' in the staue bar never change, it doesn't show whether i'm in pause mode or not, it's stuck somehow
-
@gwen-dragon: I think it works in QC
-
@Gwen-Dragon said in Periodic tab reload – Vivaldi Browser snapshot 2056.19:
I thought you could drag your myfile.user.js onto extension manager page and install it. That fails?
I tried it, it doesn't work.
-
First asking for M3
-
The new feature of periodic tab reload is a good one, but the userJS that @potmeklecbohdan write is better.
https://forum.vivaldi.net/post/396858
(function(){ let observers = []; function callback(mutationList, observer) { for (let mut of mutationList) { if (mut.type === "attributes" && mut.attributeName === "class") { if (mut.oldValue.split(" ").includes("hide") && !mut.target.className.split(" ").includes("hide")) { ajaxify.refresh(); } } } } function watch() { for (let obs of observers) { obs.disconnect(); let idx = observers.indexOf(obs); if (idx > -1) observers.splice(idx, 1); } let node = document.querySelector("#new-topics-alert"); if (!node) return; let cfg = { attributes: true, attributeFilter: [ "class" ], attributeOldValue: true }; let obs = new MutationObserver(callback); observers.push(obs); obs.observe(node, cfg); } window.addEventListener("load", () => { watch(); // Have to use jQuery coz otherwise it doesn't work if (window.$) $(window).on('action:ajaxify.end', () => watch()); }); })();
Take for example the Vivaldi Forum home https://forum.vivaldi.net , when there is a new topic or post the page make an alert "#new-topics-alert". The JS script recognize it and reload the page.
For example in the new feature you set the time to reload to 30 seconds, and even though there is only a new topic or post after 5 minutes the page will reload 10 times. With this JS script it will reload only once.
Please add this complementary feature, so the pages that send a #new-topics-alert will reload only when there is a new one (not considering the time set in this case)
-
@Gwen-Dragon said in Periodic tab reload – Vivaldi Browser snapshot 2056.19:
@kichrot UserJS files for web pages should have a special head and the file ending
.user.js
Tried.
I have JS scripts not for web pages, but for the VIVALDI interface. When I load them in the way You suggested, the scripts don't work.
Prior to this snapshot, my scripts loaded and worked fine via browser.html.