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
1
vote
2 answers

Is it possible to use node.js as a faster, more elegant, database enabled alternative to greasemonkey?

I was using Greasemonkey eariler in the week to automate some calls to a page to scrape some data from a website, this was awkward for two reasons: It's GUI based instead of commandline based) I had to store all persisted information in JSON, and…
leeand00
  • 25,510
  • 39
  • 140
  • 297
1
vote
1 answer

Accessing javascript library in iframe in greasemonkey script

I'm trying to access Dojo within my webapp, and having issues getting what I need. Specifically, I have a webapp in an iframe with different versions of Dojo loaded: In Firebug, I can do this: window.dojo.version; //…
inanutshellus
  • 9,683
  • 9
  • 53
  • 71
0
votes
0 answers

Scriptish .click event only working after "Run" but not with run-at

I'm using scriptish. I wanted to write a macro that would click for me. But it only works when I press Run in script editor. Does not work on autoload. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.js // @run-at …
Grzegorz
  • 3,538
  • 4
  • 29
  • 47
0
votes
1 answer

Scriptish GM_getResourceText doesn't work

This works on Greasemonkey, but I don't know why it doesn't work on Scriptish: // ==UserScript== // @name myscript // @namespace xxx // @include http://* // @version 1 // @grant GM_getResourceText // @resource resourceName…
Cindy
  • 105
  • 1
  • 6
0
votes
1 answer

Userscript (Scriptish) GM_openInTab returning NULL

I have an issue with the use of window.opener. Whenever I use window.open("url"), the opened window will reference window.opener fine, but when I use GM_openInTab that claims to be equivalent (and I use it for the cross browser compatibility because…
Edge
  • 2,456
  • 6
  • 32
  • 57
0
votes
2 answers

click css button or load all comments

I don't even know if my question is right, I mean, I couldn't say if it's a css button that doesn't let my code works. I want to load all comments of this news site. As you can see, at the bottom of the page, the most 5 recents comments is opened…
Commentator
  • 640
  • 1
  • 6
  • 22
0
votes
1 answer

Calling a local WCF service via Scriptish or Greasemonkey

I'm trying to expose a local WCF service that checks to see if a file exists in my database that can be accessed from a Scriptish script. Is it possible to call a local URL from Scriptish or Greasemonkey (GET or POST)? I've created a WCF service…
Jason Willett
  • 375
  • 2
  • 13
0
votes
1 answer

Can Scriptish inject scripts into other chrome: windows?

As we know Scriptish has the support for the chrome: scheme (although disabled by default), but it failed to inject a user script into other chrome: window (for example, download window, or about window). Writing a script using @include…
yume_chan
  • 858
  • 9
  • 22
-1
votes
1 answer

Create shortcut to submit form

I work entering data online to a form and would like to assign a shortcut to each of two submit buttons. I use Mac and Firefox. Is there a way to do that in Scriptish, Applescript, or something other? This is the source for one of them: << Thanks
-1
votes
1 answer

Can someone tell me why this jQuery/Javascript script isn't working?

I am trying to create a script that automatically votes a photo for a contest when I load the page (no illicit stuff, I can vote once per day :D). The script is as follows: window.onload = function() { var jq = document.createElement('script'); …
Aleix Sanchis
  • 302
  • 3
  • 12
-1
votes
1 answer

HTML table is rendered in one line

I'm trying to generate a table dynamically using a userscript. var divWrap = document.createElement('div'); divWrap.style.fontFamily = "sans-serif"; divWrap.style.width = "100%"; var spanTitle =…
JonnyRobbie
  • 526
  • 5
  • 16
1
2