油猴脚本 - dicts.cn 单词自动跳转 双核浏览器可用
跳转格式 http://www.dicts.cn/?w=blight
20230605 更新
// ==UserScript==
// @name dicts.cn 单词自动跳转 双核浏览器可用
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match http://www.dicts.cn/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
setTimeout(function () {
console.info('code 111 run', document.getElementById('word'))
document.getElementById('word').focus();
}, 100)
console.info('code run')
$(document).ready(function(){
document.getElementById('word').focus();
setTimeout(function () {
console.info('code 111 run', document.getElementById('word'))
document.getElementById('word').focus();
}, 200)
const w = getQuery('w')
if (w) {
$('#word').val(w)
window.select();
}
});
function getQuery(variable)
{
var query = window.location.search.substring(1);
console.info('query', query)
var vars = query.split("&");
for (var i=0;i<vars.length;i++) {
var pair = vars[i].split("=");
if(pair[0] == variable){return pair[1];}
}
return(false);
}
})();
---------------------------------------------
生活的意义就是你自己知道你要做什么,明确目标。没有目标,后面都是瞎扯!
https://pengchenggang.gitee.io/navigator/
SMART原则:
目标必须是具体的(Specific)
目标必须是可以衡量的(Measurable)
目标必须是可以达到的(Attainable)
目标必须和其他目标具有相关性(Relevant)
目标必须具有明确的截止期限(Time-based)
生活的意义就是你自己知道你要做什么,明确目标。没有目标,后面都是瞎扯!
https://pengchenggang.gitee.io/navigator/
SMART原则:
目标必须是具体的(Specific)
目标必须是可以衡量的(Measurable)
目标必须是可以达到的(Attainable)
目标必须和其他目标具有相关性(Relevant)
目标必须具有明确的截止期限(Time-based)