javascript Tampermonkey扩展
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript Tampermonkey扩展相关的知识,希望对你有一定的参考价值。
// ==UserScript==
// @name Hive Query Status
// @namespace http://tampermonkey.net/
// @version 0.1
// @description This tells you about the status of the Hive Queries
// @author Bhavul Gauri
// @match http://10.0.6.100:8889/*
// @match http://ip-10-0-6-100.ap-southeast-1.compute.internal:8889/*
// @grant GM_notification
// @grant window.focus
// ==/UserScript==
// Chrome Notifications!
setInterval(function() {
if (document.documentElement.textContent.indexOf('INFO : OK') > -1)
{
GM_notification({
title: 'Query done.',
text: 'Your hive query has been successfully completed.',
timeout : 6000,
image: 'https://i.stack.imgur.com/geLPT.png'
});
}
}, 10000);
以上是关于javascript Tampermonkey扩展的主要内容,如果未能解决你的问题,请参考以下文章
YouTube上的Chrome扩展程序和Tampermonkey [重复]
javascript javascript tampermonkey添加变异观察者
javascript tampermonkey脚本
javascript Tampermonkey图书馆
javascript tampermonkey-spider1
在 Tampermonkey 中使用 javascript 进行页面搜索和文本框自动填充