A Windows XP help forum. PCbanter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » PCbanter forum » Windows 10 » Windows 10 Help Forum
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Tampermonkey, Edge



 
 
Thread Tools Rate Thread Display Modes
  #1  
Old October 15th 17, 03:41 PM posted to alt.comp.os.windows-10
mechanic
external usenet poster
 
Posts: 1,064
Default Tampermonkey, Edge

Anyone got this extension working in Edge - I've installed according
to the website but not a peep? Lack of decent documentation doesn't
help.
Ads
  #2  
Old October 15th 17, 08:53 PM posted to alt.comp.os.windows-10
Paul[_32_]
external usenet poster
 
Posts: 11,873
Default Tampermonkey, Edge

mechanic wrote:
Anyone got this extension working in Edge - I've installed according
to the website but not a peep? Lack of decent documentation doesn't
help.


TamperMonkey on FF56 (reference the menu appearance of TM...)

https://s1.postimg.org/14qpvpw9a7/tamper_runs_56.gif

TamperMonkey On MSEdge (15063 stream)

https://s1.postimg.org/21phhp18xb/tamper_on_edge.gif

After installing TM in MSEdge via the Windows Store, go
back to the MSEdge settings : Extensions. Select the option
to "Show Button..." which causes TM to show in the address bar area.

Then, left-click the new TM icon.

Still no menu.

Now, move your mouse to the left of the TM icon (which has a blue
line underneath it). Finally, the menu for TM will appear.

At least MSEdge doesn't have any rough edges /s.

HTH,
Paul

  #3  
Old October 16th 17, 06:40 PM posted to alt.comp.os.windows-10
mechanic
external usenet poster
 
Posts: 1,064
Default Tampermonkey, Edge

On Sun, 15 Oct 2017 15:53:40 -0400, Paul wrote:

mechanic wrote:
Anyone got this extension working in Edge - I've installed according
to the website but not a peep? Lack of decent documentation doesn't
help.


TamperMonkey on FF56 (reference the menu appearance of TM...)

https://s1.postimg.org/14qpvpw9a7/tamper_runs_56.gif

TamperMonkey On MSEdge (15063 stream)

https://s1.postimg.org/21phhp18xb/tamper_on_edge.gif

After installing TM in MSEdge via the Windows Store, go
back to the MSEdge settings : Extensions. Select the option
to "Show Button..." which causes TM to show in the address bar area.

Then, left-click the new TM icon.

Still no menu.

Now, move your mouse to the left of the TM icon (which has a blue
line underneath it). Finally, the menu for TM will appear.

At least MSEdge doesn't have any rough edges /s.

HTH,
Paul


Yes I found that menu already, still not a peep.

The template for roll-your-own script doesn't help,I tried that with
JS statements in the user code section, no joy.
  #4  
Old October 17th 17, 07:56 PM posted to alt.comp.os.windows-10
Paul[_32_]
external usenet poster
 
Posts: 11,873
Default Tampermonkey, Edge

mechanic wrote:
On Sun, 15 Oct 2017 15:53:40 -0400, Paul wrote:

mechanic wrote:
Anyone got this extension working in Edge - I've installed according
to the website but not a peep? Lack of decent documentation doesn't
help.

TamperMonkey on FF56 (reference the menu appearance of TM...)

https://s1.postimg.org/14qpvpw9a7/tamper_runs_56.gif

TamperMonkey On MSEdge (15063 stream)

https://s1.postimg.org/21phhp18xb/tamper_on_edge.gif

After installing TM in MSEdge via the Windows Store, go
back to the MSEdge settings : Extensions. Select the option
to "Show Button..." which causes TM to show in the address bar area.

Then, left-click the new TM icon.

Still no menu.

Now, move your mouse to the left of the TM icon (which has a blue
line underneath it). Finally, the menu for TM will appear.

At least MSEdge doesn't have any rough edges /s.

HTH,
Paul


Yes I found that menu already, still not a peep.

The template for roll-your-own script doesn't help,I tried that with
JS statements in the user code section, no joy.


I got mine working.

First I tried enabling Developer Mode, but I don't really think
that helped.

*******

Initially, mine didn't seem to "run in immediate mode". When the
interface says "Enabled", your userscript does not trigger (load)
until you visit a particular site (or other trigger condition).

Since visiting the tampermonkey.net site was a highly likely
occurrence for the purposes of this experiment, I added
it to the header of my "Hello World" script. After I added
the @include, it started to work after being enabled. The
"wait for 10 seconds" "while loop", was originally intended
as a "CPU waster", so I could detect something was happening,
and isn't a key part of the script now. It was part of my
attempt at a debugging technique.

// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match http://*/*
// @grant none
// @include http://tampermonkey.net/* ---- must set a trigger
// ==/UserScript==

(function() {
'use strict';

// Your code here...
var start = new Date().getTime();
alert("Wait for 10 seconds");
window.open('http://www.stackoverflow.com', '_blank', 'toolbar=yes, location=yes, status=yes, menubar=yes, scrollbars=yes');
while (new Date().getTime() start + 10000);
})();

Now, that script isn't entirely successful. The window.open
doesn't work, because of popup blockers. But I *did*
see the Alert pop up, and it helpfully includes
a tick box to not show the message again. The reason
this is important, is the trigger can occur many times,
causing the userscript to run many times as well.
For example, the above script opens four StackOverflow
separate windows (not tabs), when I attempt to visit

http://tampermonkey.net

*******

The results of my first userscript. It only triggers when
visiting a page on the tampermonkey.net site. And you cannot
see the four windows in the Task Bar that opened to
stackoverflow.com home page in the picture :-)

https://s1.postimg.org/5gsmb5m033/my...userscript.gif

@include seems to help...

Paul
  #5  
Old October 19th 17, 03:04 PM posted to alt.comp.os.windows-10
mechanic
external usenet poster
 
Posts: 1,064
Default Tampermonkey, Edge

On Tue, 17 Oct 2017 14:56:19 -0400, Paul wrote:

I got mine working.


[details snipped!]

Thanks Paul, I copied your example onto my system and got it
working. My initial problems were probably due to a missing @include
line in the header. I copied a previously working GreaseMonkey
script from my Qupzilla install and got that working too. My main
intention was to load some CSS details into each page visited, and
using the GM_addStyle(css) interface command did the trick. Now
pages have sensible fonts and colours!
 




Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off






All times are GMT +1. The time now is 11:48 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 PCbanter.
The comments are property of their posters.