<input type="submit" name="do_sum">
*/10 * * * * php /path/to/project/update_statistic.php
mysql_query(...);
chrome.webNavigation.onDOMContentLoaded.addListener(function (details) {
if (details.frameId == 0) {
chrome.tabs.executeScript(details.tabId, {
runAt:'document_start',
file: 'script.js'
});
}
})
var el = document.createElement('div');
el.innerText = "Hell world!";
document.body.appendChild(el);