Most voted "userscripts" questions
Userscripts refers primarily to Javascript extensions used in web browsers. Used to automate or customize actions, design, or other aspects of user experience.
Learn more…5 questions
Sort by count of
-
15
votes1
answer676
viewsWhat is the purpose of the with_jquery function?
I’m learning to write Userscripts (for Tampermonkey) and virtually every example I see makes use of a function with_jquery: function with_jquery(f) { if (!jQuery) return; var script =…
-
5
votes1
answer198
viewsGlobal Differences in Userscripts in Chrome and Firefox
I started programming Userscripts in Chrome and almost all snippets of code I find work, but when going pro Firefox gives problem. In Chrome I use the Tampermonkey and in Firefox the Scriptish…
javascript google-chrome firefox global-variables userscriptsasked 10 years, 2 months ago brasofilo 6,560 -
5
votes1
answer1335
viewsRun custom functions in the browser console
It’s a little tiring having to keep writing console.log() all the time. I know that in my code I can define the function log that does just that. But outside the app environment, I would like to…
-
2
votes2
answers3195
viewsRun JS on third party page
I would like to know all possible ways how to run a JS(site) on a third-party page, where my real intention is to manipulate the frontend even to give me the custom view of a page x. I can already…
-
0
votes1
answer56
viewsLoad Javascript from a URL through the Address bar or Bookmarklet
I have some Userscripts and would like to run on my Windows Phone, but there is no app for WP like Greasemonkey or Tampermonkey. Then I came up with a crazy idea but I believe it will work: Create a…