Я пытаюсь использовать Greasemonkey и jQuery 1.4.2.Когда я устанавливаю скрипт Greasemonkey, jQuery определенно загружается и появляется в каталоге скриптов.Однако приведенный ниже код ничего не добавляет к элементам с классом PAPAGETITLE
.Что я делаю не так?
// ==UserScript==
// @name PS Timesheet
// @namespace http://www.steelebit.com/gmscripts
// @description Used to fix a terrible implementation
// @include https://intranet.site.com/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js
// ==/UserScript==
// Append some text to the element with id #someText using the jQuery library.
$(".PAPAGETITLE").append(" more text.");