Code Monkey home page Code Monkey logo

vm-url's People

Contributors

gera2ld avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

vm-url's Issues

`VM.url` does not work on.... Violentmonkey

Ironically, it DOES work on Tampermonkey.

Simple script:

// ==UserScript==
// @name Test VM.url
// @match https://github.com/*
// @noframes
// @grant window.onurlchange
// @require https://cdn.jsdelivr.net/npm/@violentmonkey/url
// ==/UserScript==

(() => {
  VM.onNavigate(() => {
    console.log('VM.onNavigate:', window.location);
  });
  if (window.onurlchange === null) {
    console.log('Using TM');
    window.addEventListener('urlchange', (info) => {
      console.log('urlchange:', info, window.location);
    });
  }
  console.log('loaded', window.location);
})();

In this configuration:

Userscript manager: Violentmonkey 2.15.0
Platform: firefox 117.0 linux x86-64

I get the following even after clicking to a new page:

 loaded Location https://github.com/violentmonkey/vm-url

However, in this configuration:

Userscript manager: Tampermonkey 4.19.0
Platform: Firefox 117.0 Linux x86-64

I get multiple events after changing pages (I wasn't seeing multiples on another website, so I figure this is a GH thing):

Using TM
loaded Location https://github.com/violentmonkey/vm-url
VM.onNavigate: Location https://github.com/violentmonkey/vm-url
urlchange: Object { url: "https://github.com/violentmonkey/vm-url" } Location https://github.com/violentmonkey/vm-url
VM.onNavigate: Location https://github.com/violentmonkey/vm-url
VM.onNavigate: Location https://github.com/violentmonkey/vm-url/issues
urlchange: Object { url: "https://github.com/violentmonkey/vm-url" } Location https://github.com/violentmonkey/vm-url/issues
urlchange: Object { url: "https://github.com/violentmonkey/vm-url/issues" } Location https://github.com/violentmonkey/vm-url/issues
VM.onNavigate: Location https://github.com/violentmonkey/vm-url/issues
urlchange: Object { url: "https://github.com/violentmonkey/vm-url/issues" } Location https://github.com/violentmonkey/vm-url/issues

I also tried this on LinkedIn with similar results.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.