tampermonkey Questions
3
Solved
There does not appear to be any information on how these functions work. I presume these are Tampermonkey exclusive functions?
It looks like they are designed to allow communication between current...
Coastwise asked 11/9, 2014 at 17:10
1
I have a userscript for Google Chrome's Tampermonkey. Currently, it uses HTML5 local storage to save its data but I would like this data to be synchronized across all computers the signed-on user u...
Kwiatkowski asked 14/2, 2016 at 20:20
1
I want to create a TamperMonkey script that parses some ABI data from EtherScan.io (See: https://github.com/devedse/DeveEtherscanParser).
I now did some poormans ABI decoding but I found out there...
Subcommittee asked 24/5, 2018 at 21:36
3
Solved
How do I force Tampermonkey to run/execute a script late after every document loaded by AJAX?
I wish to access those elements in my script and change them. But, even though I set @run-at to docume...
Kathlyn asked 1/8, 2013 at 13:33
8
Solved
I would like to be able to add custom snippets of javascript to any site that matches a regex. This is mostly because of sites that I use daily because of specialized content, but which have a poor...
Achondrite asked 24/8, 2011 at 6:52
8
Solved
I recently started development on a Tampermonkey script, which is hosted on OpenUserJs. It seems that I'm going to invest a bit more time in the future on this script by keep it up to date and exte...
Hungerford asked 18/12, 2016 at 20:29
2
Solved
I need to hide a section from an html page:
<h1 data-ng-show="!menuPinned &amp;&amp; !isSaaS" class="logo floatLeft" aria-hidden="false"><span>XXX&nbsp;</span><spa...
Agnusago asked 6/9, 2016 at 10:27
2
Solved
I'm writing a user script to take an image from a page, and upload it to a server.
The script works fine in FF (Greasemonkey and Scriptish), but when I use Chrome (using Tampermonkey or Ninjakit), ...
Kitti asked 16/10, 2013 at 1:20
3
Solved
The GreaseSpot page on metadata blocks says that the two are very similar but @match "sets more strict rules on what the * character means." GreaseSpot then proceeds to teach using @include, but Ch...
Followup asked 4/8, 2015 at 19:35
1
Today I came across a situation where I need to make an extension to monkey-patch some objects in a web page.
However I found little to none documentation on how it can actually be achieved, I've t...
Flagrant asked 28/6, 2022 at 21:18
4
I'm using Greasemonkey to redirect certain URLs to another but I would like to redirect before the URL to be redirect loads.
Currently I'm using this simple script:
//==UserScript==
// @name Redi...
Nitz asked 22/12, 2010 at 6:30
3
Solved
I'm working on the translation of the dashboard/admin of Shopify using Tampermonkey.
For security purposes, there's some parts of the Shopify Admin Dashboard I don't want Tampermonkey to work with...
Pinckney asked 16/9, 2014 at 9:12
1
Solved
... such being able to use my preferred IDE for developing and avoiding C&Ping the code into TM's Edit window very, very often repeatedly?
I found /home/<user>/.mozilla/firefox/t1b9jtvd.d...
Aplanospore asked 11/6, 2023 at 17:11
8
Solved
For security reasons, Tampermonkey scripts are not saved in accessible files, but in a plugin data. The only way to edit them is to use Tampermonkey's integrated editor.
However, I'd rather use IDE...
Inconsonant asked 27/3, 2018 at 10:0
7
Solved
Is there a TamperMonkey equivalent to GreaseMonkey's GM_addStyle method for adding CSS?
In GreaseMonkey, you can add a bunch of CSS properties to multiple elements like so:
GM_addStyle("body { co...
Belen asked 15/5, 2014 at 16:6
2
Solved
I'm trying to have my Tampermonkey script show a Chrome notification, but no notification is showing up. I have allowed notifications on the site.
Here is my code:
// ==UserScript==
// @name New ...
Intramural asked 9/8, 2018 at 14:8
5
I have to include all sites in tampermonkey..this is the script that i have to run
// ==UserScript==
// @name Phishing Blockz
// @namespace http://use.i.E.your.homepage/
// @version 0.1
// @descri...
Staffan asked 18/3, 2013 at 11:11
3
Solved
I've used setInterval() plenty of times in typical scripts, but not with userscripts. For some reason, console.log() isn't working, but only inside of the setInterval. The alert, however, is workin...
Micronesia asked 7/3, 2015 at 16:59
2
I have a very simple userscript that I've written with TamperMonkey, and I'd like it to run on the Chrome new tab page.
According to this site there is no way to run userscripts on the new tab page...
Teapot asked 25/7, 2017 at 10:33
4
I'm trying to make a Tampermonkey script that'll automatically enter text into some form input fields.
Normally, you can do this with just:
myElement.value = "my new text"
Problem is, this for...
Header asked 31/8, 2018 at 17:49
2
Basically, there is a specific website I visit that I keep a userscript auto-refresh set on a timer. This specific page changes content every now and then upon being refreshed. I want a sound to be...
Yawmeter asked 10/5, 2018 at 8:19
5
Solved
I am trying to make a script run when Ctrl + Alt + e is pressed.
How can Tampermonkey fire on a simultaneous ctrl, alt, and e key?
I have tried ctrlKey, and altKey. I've found nothing that works.
...
Slesvig asked 1/6, 2016 at 1:18
1
I only have two scripts and one of them, not sure which, is causing an issue with a photo gallery on a certain site. I didn't write those scripts; they're both adblockers; I have no idea how to wri...
Dorothydorp asked 19/2, 2017 at 5:36
1
I use @require to load a local JavaScript file shared by some of my GreaseMonkey scripts. When I change the file, GreaseMonkey continues to use the original version and does not load the new versio...
Alyssaalyssum asked 24/6, 2016 at 7:9
2
If I create a div programmatically with Tampermonkey:
HTML:
<div onclick="myfunc()"/>
script:
function myfunc() { alert("clicked"); }
then click on the div; myfunc is not called in my...
Teddi asked 23/5, 2013 at 1:27
1 Next >
© 2022 - 2024 — McMap. All rights reserved.