作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试显示有关使用 Greasemonkey 观看视频的时间的警报。
// ==UserScript==
// @name Time YouTube
// @description Does not work ! Help !
// @namespace time_youtube
// @include *youtube.com/watch*
// @grant GM_setValue
// @icon http://aux3.iconpedia.net/uploads/520882026785186105.png
// @version 1.3
// ==/UserScript==
ytplayer = document.getElementById ("movie_player");
var time = document.createElement ('a');
time.innerHTML = '<a style="position: fixed; top: 200px; left: 3px; color:black;">Time</a>';
//time.addEventListener ('click', function(){GM_setValue('url_time',(document.location.href) + '&t=' + (ytplayer.getCurrentTime()));}, false);
time.addEventListener ('click',
function () {
alert (ytplayer.getCurrentTime() );
},
false
);
document.body.appendChild (time);
但这不起作用。
你能帮帮我吗?谢谢!
最佳答案
由于各种安全和范围问题,您无法运行 ytplayer.getCurrentTime()
来自 Greasemonkey 脚本范围。
同样,click
事件处理程序必须在目标页面的范围内运行才能访问该功能。尝试不这样做将产生 undefined
的组合和 Error: Bad NPObject as private data!
.
这意味着您必须“注入(inject)”click
时间按钮的处理程序。
但首先,这里还有几个问题需要考虑:
<iframe>
秒。为避免多次执行脚本出现问题,请使用 window.top === window.self
等检查以确保脚本仅在您定位的框架或包含页面中运行。innerHTML
和尽可能多的内联样式。这将使代码更易于维护,在许多情况下速度更快,并且不太可能触发意外的副作用。综上所述,这是重构的完整脚本:
// ==UserScript==
// @name Time YouTube
// @description Does not work ! Help !
// @namespace time_youtube
// @include *youtube.com/watch*
// @icon http://aux3.iconpedia.net/uploads/520882026785186105.png
// @grant GM_setValue
// @grant GM_addStyle
// @version 1.3
// ==/UserScript==
//-- 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!");
}
}
//-- Style and position our button the CSS way.
GM_addStyle ( " \
#gmTimeBtn { \
position: fixed; \
top: 200px; \
left: 3px; \
color: black; \
margin: 0; \
padding: 0; \
} \
" );
//-- This is a standard-ish utility function...
function addJS_Node (text, s_URL, funcToRun, runOnLoad) {
var D = document;
var scriptNode = D.createElement ('script');
if (runOnLoad) {
scriptNode.addEventListener ("load", runOnLoad, false);
}
scriptNode.type = "text/javascript";
if (text) scriptNode.textContent = text;
if (s_URL) scriptNode.src = s_URL;
if (funcToRun) scriptNode.textContent = '(' + funcToRun.toString() + ')()';
var targ = D.getElementsByTagName ('head')[0] || D.body || D.documentElement;
targ.appendChild (scriptNode);
}
最后,从您的脚本来看,您似乎希望最终使用 GM_setValue()
等,单击该按钮时。这需要跨范围的消息传递。 参见this answer 或在您到达该部分时打开一个新问题。
关于javascript - 如何从 Greasemonkey 调用这个 YouTube 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14220250/
我是一名优秀的程序员,十分优秀!