I'm trying to see if I can get Firebase working inside a greasemonkey script, but am unable to get it to work.
- It worked a-ok inside of tampermonkey. - It worked fine in a stand alone HTML doc after embedding the firebase script and the subesequent code - But in Firefox 37.0.1 and GM 3.1 it any changes are not reflected in the Firebase dashboard and I cannot discern any overt errors through the javascript console. I know it's kind of a stretch asking here, but someone smarter than I might have some idea. Thanks, Ben // ==UserScript== // @name indexCache // @namespace indexCache // @include http://www.SOMEWEBSITE.com/en // @require https://cdn.firebase.com/js/client/2.2.3/firebase.js // @version 1 // @grant none // ==/UserScript== var ref = new Firebase("https://SOMEFIREBASE.firebaseio.com/mine"); ref.on("child_added", function(snapshot) { console.log(snapshot.val()); }, function (errorObject) { console.log("The read failed: " + errorObject.code); }); ref.push({ title: "Hello World!", author: "Firebase", location: { city: "San Francisco", state: "California", zip: 94103 } }); console.log('pushed Hello World') ref.push({ title: "dude World!", author: "Firebase2", location: { city: "San Franciscos", state: "Californiaaaa", zip: 94103 } }); console.log('pushed dude World') -- You received this message because you are subscribed to the Google Groups "greasemonkey-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/greasemonkey-users. For more options, visit https://groups.google.com/d/optout.
