JQuery/Greasemonkey in Google Chrome. Why won't this work? No Alert shows up.
Posted
by David Grassi
on Stack Overflow
See other posts from Stack Overflow
or by David Grassi
Published on 2010-04-06T21:34:19Z
Indexed on
2010/04/11
6:23 UTC
Read the original article
Hit count: 262
I'm unable to get this script to work as an extension in google chrome. No alert shows up. normal javascript alerts work.
// ==UserScript==
// @name voip
// @namespace 1
// @description voip
// @include *
// @require http://jquery.com/src/jquery-latest.js
// ==/UserScript==
$(document).ready(function() {
alert("Hello world!");
});
© Stack Overflow or respective owner