вроде бы разобрался
делал так
void MainWindow::on_webView_loadFinished(bool )
{
QFile file("user.js");
QString userJS_;
if (file.open(QIODevice::ReadOnly))
{
QTextStream text(&file);
userJS_=text.readAll();
ui->webView->page()->currentFrame()->evaluateJavaScript(userJS_);
}
file.close();
}
user.js :
// ==Userscript==
// @name my little test
// @description bla-bla-bla
// @author doromones
// @include *
// ==/Userscript==
(
function()
{
alert('hello');
alert('hello 2')
}
)();
и все равно хотелось бы услышать кто -что думает по етому поводу
(использование userjs в qwebkit)