-1
votes
2answers
33 views

Add event on dynamic change of DIV

I have a page (Facebook page) that has its content changing dynamically. I am writing a GM script but it only loads when the page refreshes, and this is not the case. I have tried to do something ...
0
votes
0answers
82 views

Are Facebook's “-cx-PRIVATE-” prefix for its CSS class names, protected against Greasemonkey type userscripts?

Facebook have started using the "-cx-PRIVATE-" as a naming prefix for many of their CSS class names on their site. It seems like it is some sort of protection against Greasemonkey type user scripts. ...
1
vote
1answer
117 views

How do I run a script after internal scripts are fully loaded?

I'm trying to hide specific people in the Facebook sidebar chat list. My first attempt was to just try and replace the name of a user in the chat bar but a simple .replace doesn't work since the chat ...
0
votes
0answers
95 views

Facebook API call from greasemonkey script not working

I am writing a Greasemonkey script which will populated Facebook friend's data based on details of webpage visited. I am facing issue with access token as it expired several times in the same session. ...
1
vote
1answer
571 views

Facebook auto-login JS works in console but not in GM script

I am trying to create an auto login script for Facebook rather than use a preexisting one. When I run the following code in the javascript console of both Firefox and Chrome both the username and ...
1
vote
1answer
172 views

Particular JQuery function (used with GreaseMonkey) not updating until interacted with

EDIT: Solution at bottom of post. I've got a custom GreaseMonkey script I made that uses JQuery to filter out and modify certain feed items in my Facebook news feed. It's been working great, but ...
1
vote
2answers
223 views

Need help to hide the ego_bar in facebook

// ==UserScript== // @name Supprimer les suggestions d'amis sur facebook // @namespace facebook // @description Supprimer les suggestions d'amis sur facebook // @include *.facebook.com // ...
0
votes
1answer
296 views

Script to fire an event as soon as an element exists?

I'm trying to write a little Greasemonkey script for achieving some tasks in Facebook, like hiding news and such. The problem is: I'm having an ID to an element which isn't existing yet in the DOM. ...
0
votes
1answer
263 views

Greasemonkey timer and replace

The timer should check and replace a text every 1 sec on Facebook chat submit message box function gopi() { ...
0
votes
2answers
253 views

How can I prevent a webpage from detecting I am running a script?

After experimenting with scripts on facebook.com, I noticed that for a couple of minutes it didn't allow me to connect to facebook.com. This happened more than one time so I suspect that Facebook ...
1
vote
2answers
456 views

How do I change text color using javascript?

Okay, I'm trying to make a greasemonkey script for facebook, and I need to change the color of the home button text to black, I managed to do it for the button that has your name on it, but I cant ...
-1
votes
1answer
125 views

Greasemonkey script and sorting elements

I'm doing a small script to add functionality to the facebook find friends page: basically order the suggested friends by mutual friends. The code can be found here: http://pastebin.com/x6Ss326A ...
1
vote
3answers
561 views

XMLHttpRequest access facebook developers and graph

I have problem with accessing Facebook graph. I am using a Greasemonkey script. When I use the same script in chrome's Tampermonkey it works well, and I can get data. In Firefox nothing happens, I ...
0
votes
1answer
460 views

setting text in textarea using javascript

I am trying to process the text in textarea [on Facebook group page. 'write post' has one text area] and replace it with new text. This is done using Greasemonkey script textHolder = ...
1
vote
1answer
538 views

Change data before submitting the form

I want to be able to encrypt text in a textbox before submiting a form in facebook.I tried ajaxFORM plugin with beforeSerialize or with beforeSubmit but the encryption doesnt happen.In the code that ...
6
votes
2answers
561 views

Can a website know if I am running a userscript?

Can, for example, Facebook.com run a version control script on my browser and find out if I am running altered HTML code with the use of a script? Could that be done with a script that can read the ...
0
votes
0answers
186 views

Embed a (Diaspora) textbox wherever Facebook textbox is located

I want to make a script with javascript that replaces the (post) textbox of facebook with the (post) textbox from another social site like diaspora. What I want to happen is (for example facebook with ...
1
vote
1answer
525 views

Why greasemonkey doesn't detect some page changes in facebook?

I was trying to do a user.js to /messages page in facebook, but looks like greasemonkey doens't notice when the navigation changes from / to /messages. It also occurs in other internal pages. First i ...
0
votes
1answer
603 views

Greasemonkey script to work on dynamically loaded posts on Facebook

I wrote a Greasemonkey script and it affect the firstly loaded posts on Facebook. but after you scroll down on the feed, the script doesn't work on the newly loaded posts. Is there a way to re-run ...
1
vote
1answer
576 views

greasemonkey script won't work on FaceBook

i have this code: ==UserScript== // @name name // @namespace url // @description desc // @include http://www.facebook.com/* // @require ...
1
vote
1answer
2k views

facebook - remove people you may know

I'm just getting into facebook now. That "people you may know" section that pops up is driving me to distraction, and I'm just trying to get rid of it. I have a greasemonkey script but its not ...
2
votes
3answers
576 views

Run Code After Function is Finished OR DIV Appears

I have written a Userscript for Facebook and it groups similar notifications together. Now, using just a static HTML page with old notifications I had, the script works 100%. Here's the problem: the ...
2
votes
1answer
965 views

Greasemonkey script not executed when unusual content loading is being used

I'm trying to write a Greasemonkey script for Facebook and having some trouble with the funky page/content loading that they do (I don't quite understand this - a lot of the links are actually just ...
3
votes
2answers
2k views

How to stop javascript alert from showing after pressing ok

I want to show an alert if I have something in my Facebook inbox. I think it can be easily accomplished using userscripts... this is what I have so far (thanks to the guys at the userscripts forums): ...