Greasemonkey can do some interesting tricks on a webpage.
Greasemonkey scripts (Javascript) can alter web page elements, add a div or box to the page, trigger button click events and others.
For example, here is a script that adds a checkbox before the link tag for ever <li> element:
// ==UserScript==
// @name script name
// @namespace http://my.homepage/
// @version 0.1
// @description add marking checkbox.
// @match http://matched_website.com
// @match https://matched_website.com
// ==/UserScript==
function changhandler(event) {
if (event.target.checked) {
localStorage[event.target.name] = true;
} else {
localStorage.removeItem(event.target.name);
}
}
[].forEach.call(
document.getElementById('main').getElementsByTagName('li'),
function(e) {
var checkBox = document.createElement('input');
checkBox.type = 'checkbox';
checkBox.name = e.getElementsByTagName('a')[0].innerHTML;
checkBox.checked = localStorage[e.getElementsByTagName('a')[0].innerHTML];
checkBox.addEventListener('change', changhandler, false);
oj.insertBefore(checkBox, null);
}
);
[1] http://en.wikipedia.org/wiki/Greasemonkey
Tuesday, April 21, 2015
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment