I have this code
//
// ==UserScript==
// @name test
// @description test
// @version 0.2
// @namespace test
// @include *
// ==/UserScript==
$(function(){
alert('d');
});
and when I'm trying to execut it in my chrome, it installs as an extension, but executes nowhere (stackoverflow has jQuery already so I think I don't need to include that again. )
What's wrong?