We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
// ==UserScript== // @name LinkdIn // @namespace http://tampermonkey.net/ // @Version 2025-01-18 // @description try to take over the world! // @author You // @match https://www.linkedin.com/mynetwork/grow/* // @ICON data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // ==/UserScript==
(function() { 'use strict';
// Sample JSON data to convert to CSV alert(`hey`)
})();
The text was updated successfully, but these errors were encountered:
Is it the same as in #1897?
Sorry, something went wrong.
// ==UserScript== // @name LinkdIn // @namespace http://tampermonkey.net/ // @Version 2025-01-18 // @description try to take over the world! // @author You // @match https://www.linkedin.com/mynetwork/grow/* // @ICON data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant window.onurlchange // ==/UserScript==
function matchScript ({ url }) { if (url.startsWith("https://www.linkedin.com/mynetwork/grow/")) { runScript(); } }
window.addEventListener("urlchange", matchScript);
matchScript({ url: location.href }); // check the initial location
function runScript () { // main code alert(good) }
good
see where i'm wrong
No branches or pull requests
// ==UserScript==
// @name LinkdIn
// @namespace http://tampermonkey.net/
// @Version 2025-01-18
// @description try to take over the world!
// @author You
// @match https://www.linkedin.com/mynetwork/grow/*
// @ICON data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
(function() {
'use strict';
})();
The text was updated successfully, but these errors were encountered: