- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我在这里问了一个问题并得到了答案:How to call this YouTube function from Greasemonkey?
该代码有效并向页面添加了一个按钮,用于捕获视频时间。
但是,关键部分必须在目标页面范围内运行——其中 Greasemonkey 的 GM_
功能不可用。
我想用GM_setValue()
来记录视频时间。如何从按钮的 click
处理程序中调用 GM_setValue()
?
这里是the complete script (right-click to save)的相关部分:
... ...
//-- Only run in the top page, not the various iframes.
if (window.top === window.self) {
var timeBtn = document.createElement ('a');
timeBtn.id = "gmTimeBtn";
timeBtn.textContent = "Time";
//-- Button is styled using CSS, in GM_addStyle, below.
document.body.appendChild (timeBtn);
addJS_Node (null, null, activateTimeButton);
}
function activateTimeButton () {
var timeBtn = document.getElementById ("gmTimeBtn");
if (timeBtn) {
timeBtn.addEventListener ('click',
function () {
var ytplayer = document.getElementById ("movie_player");
//-- IMPORTANT: GM_functions will not work here.
console.log ("getCurrentTime(): ", ytplayer.getCurrentTime() );
alert (ytplayer.getCurrentTime() );
},
false
);
}
else {
alert ("Time button not found!");
}
}
... ...
谢谢:-)
最佳答案
要从必须在页面范围内运行的代码中使用 Greasemonkey 的 GM_
函数(例如您的 timeBtn
点击处理程序),请执行以下操作:
postMessage
以字符串格式发送数据。GM_
函数。将 window.postMessage ()
和 window.addEventListener ("message"...
添加到您的代码中,它变成:
... ...
//-- Only run in the top page, not the various iframes.
if (window.top === window.self) {
var timeBtn = document.createElement ('a');
timeBtn.id = "gmTimeBtn";
timeBtn.textContent = "Time";
//-- Button is styled using CSS, in GM_addStyle, below.
document.body.appendChild (timeBtn);
addJS_Node (null, null, activateTimeButton);
window.addEventListener ("message", receiveTimeMessage, false);
}
function activateTimeButton () {
var timeBtn = document.getElementById ("gmTimeBtn");
if (timeBtn) {
timeBtn.addEventListener ('click',
function () {
var ytplayer = document.getElementById ("movie_player");
/*-- GM_functions will not work here, so send the data
back to the GM script scope.
*/
//-- Tag the message, we may not be the only ones sending.
var messageTxt = JSON.stringify (
{currentVidTime: ytplayer.getCurrentTime ()}
);
window.postMessage (messageTxt, "*");
},
false
);
}
else {
alert ("Time button not found!");
}
}
function receiveTimeMessage (event) {
var messageJSON;
try {
messageJSON = JSON.parse (event.data);
}
catch (zError) {
// Do nothing
}
if ( ! messageJSON || ! messageJSON.currentVidTime)
return; //-- Message is not for us.
/*--- We have a time value, set it with GM_setValue ()
But, WARNING: First make sure that the stored value is
a safe string. GM_setValue() crashes on just about anything else.
*/
var safeValue = JSON.stringify (messageJSON.currentVidTime);
GM_setValue ("videoMarkedTime", safeValue);
console.log ("Video time recorded with GM_setValue ().");
}
... ...
您可以通过打开 about:config
并搜索 videoMarkedTime
来查看存储的值。
关于javascript - 如何从必须在目标页面范围内运行的代码调用 Greasemonkey 的 GM_ 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14229539/
我提出了一个问题并在这里得到了答案:How to call this YouTube function from Greasemonkey? 该代码有效,并向页面添加一个按钮,用于捕获视频时间。 但是
当我的 GM 脚本执行此操作时: var curTab = GM_openInTab(url); 它会导致浏览器控制台中出现 'GM_openInTab is not defined' JavaScr
我在这里问了一个问题并得到了答案:How to call this YouTube function from Greasemonkey? 该代码有效并向页面添加了一个按钮,用于捕获视频时间。 但是,
我目前正在使用 GM_setValue 和 GM_getValue 将数据存储在我在 Greasemonkey 中创建的用户脚本中。我希望能够轻松地将数据保存在 GM 正在从脚本本身内部存储所有数据的
我是一名优秀的程序员,十分优秀!