Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am creating a chrome extension for facebook. I need to execute the same content script on every page. It works well during the first load but it doesn't work when I go to a facebook page thanks to a link (as the profile name). I read this was because not the entire page was loaded except the first time. So the script is not executed again. However I have no idea how to solve this problem.

Here is my manifest.json :

{
    "name" : "name",
    "version" : "1.0",
    "manifest_version":1,
    "description" : " description ",
    "content_scripts" : [
            {
              "matches" : ["http://www.facebook.com/*"],
              "js" : ["test.js"]
            }   
    ] ,
    "all_frames":"true"  
}

I hope someone will have the answer because I really need the script (test.js, which doesn't change the html or the css) to be executed on every page every time!

Thanks for your future answers.

share|improve this question
Facebook heavily relies on AJAX, iirc. The page itself is not reloaded, but the contents are replaced. Because the problem is Facebook-specific, have a look at facebook.stackoverlow.com – Rob W Jul 26 '12 at 15:16
You could try to implement a handler for the hashchange event in your script, and have it run itself again when this event occurs … – CBroe Jul 26 '12 at 16:11
This is not related to your problem, but your matches should rather be: "matches" : ["*://www.facebook.com/*"] (Some people always load Facebook in https) – Maxime Jul 27 '12 at 11:51

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.