Questions tagged [scriptish]

Scriptish is a Mozilla Firefox extension that allows users to run scripts that are able to customize the way a web page displays or behaves. It is a fork of Greasemonkey.

26 questions
11
votes
5 answers

How do I prevent @require from caching external js scripts

I'm currently trying to figure out how I can include a javascript, I have on my webserver, in my scriptish/greasemonkey script and make it reload the script everytime the userscript gets called. I'm editing the script on my webserver and I really…
DaMaGeX
  • 693
  • 7
  • 18
4
votes
1 answer

Script to save settings

Is there a way to save some settings to the local computer that is not cookies with a user script? It is difficult to make a user script that is for multiple domains if the settings are not global. From a comment: "I am using scriptish ".
John
  • 5,942
  • 3
  • 42
  • 79
3
votes
2 answers

Why does waitForKeyElements need another timeout for Google search results?

The following script does what I want it to do but not as fast as I'd like it to do it. :-) The goal is always show the search tools that become visible when the Search Tools button is clicked on Google Search results. I can't get…
GollyJer
  • 23,857
  • 16
  • 106
  • 174
3
votes
1 answer

Scriptish script needs the page refreshed to run?

This script assists in a checkout process at an online store. All is working correctly, except the need to refresh the page to get the program to run initially. I wonder if it is a cache problem because it works on other products that have been…
zweed4u
  • 207
  • 5
  • 18
2
votes
1 answer

Setting tabindex using a userscript?

I work entering data online to a form that I would like to change the tabbing order but have had no luck using Greasemonkey and Scriptish. I am able to remove tabindexes of -1 to make fields accessible in Scriptish. However, whenever I try to set…
2
votes
1 answer

Capture screen via greasemonkey/scriptish/etc

I need to create a script for greasemonkey/scriptish/etc which would do some actions and at the end of script I need to capture a result screen. How can I take screenshot via script?
Anton
  • 56
  • 3
  • 6
2
votes
3 answers

JS innerHTML.replace() behavior

I try to make a JavaScript replacing annoying fonts in a forum using Scriptish. The code itself works fine, but the execution also kills a text editor, which it shouldn't. The buttons and bars are still there, but the textbox is gone. The regex used…
dly
  • 1,080
  • 1
  • 17
  • 23
2
votes
1 answer

"eval is not a function" when using iframe and Greasemonkey/Scriptish

Is there any way I can get this piece of code to work inside Greasemonkey/Scriptish, or would I have to inject it into the webpage itself? body = document.getElementsByTagName("body")[0]; fakeConsole = 'window.top._console'; injected =…
User2121315
  • 283
  • 4
  • 14
2
votes
2 answers

GM_setValue is not defined

I'm trying to get a fairly simple script which persists a value and retrieves it in the successor to GreaseMonkey: Scriptish. Browser: Firefox 9.0 Scriptish: 0.1.7 On Windows 7 Ultimate 64-bit // ==UserScript== // @id …
leeand00
  • 25,510
  • 39
  • 140
  • 297
1
vote
1 answer

Making requests from userscript to the localhost

So, I'm trying to make cross-site AJAX request from my own script to the localhost. In the userscript (running on Firefox's Scriptish engine) I'm loading my script like this myscript_include.setAttribute('src', 'http://localhost/myscript.js?' +…
1
vote
1 answer

How to use Freebase's suggestion script from a userscript?

I want to write a (Scriptish) userscript to include among other things the Freebase suggestion search widget on various web sites. I've tried several approaches to get this to work but no luck so far. My userscript looks like (take note of the…
Bruce van der Kooij
  • 2,192
  • 1
  • 18
  • 29
1
vote
0 answers

scriptish in firefox 42.0b3 call jquery fail

I don't know what happen, seems scriptish(nightly 0.1.13pre) in firefox 42.0b3 can't load JQuery now, could someone help me. here is the origin code // ==UserScript== // @id test // @name test // @version 1.0 //…
Batingo
  • 11
  • 2
1
vote
2 answers

User @include url Precedence over Script @include url

I don't like scripts that use: // @include http://* they overload many pages, where we didn't want to, also because I had problems in past, while writing a script, console was full of errors produced by scripts of this kind. I recognize scripts…
Commentator
  • 640
  • 1
  • 6
  • 22
1
vote
1 answer

My Greasemonkey script stopped working after something updated

I had made a Greasemonkey script for StumbleUpon, and it worked. But suddenly, maybe after a Mozilla or Scriptish update, it stopped working on all protocols. Please review my script for a mistake. I am a novice in scripting Script: //…
adi
  • 207
  • 1
  • 10
1
vote
1 answer

Greasemonkey scripts worked in Firefox 16.0.2 but not in version 17.0.1 or later?

I have old userscripts with jQuery that work fine in Firefox 16, but stopped working with the Firefox 17 release. So, I was using version 16.0.2 until today when I tried to upgrade to 18 and the same problem persists. First, I thought that could be…
Commentator
  • 640
  • 1
  • 6
  • 22
1
2