stylus/health.js

8 lines
172 B
JavaScript
Raw Normal View History

chrome.extension.sendMessage({method: "healthCheck"}, function(ok) {
if (!ok) {
if (confirm(t("dbError"))) {
window.open("http://userstyles.org/dberror");
}
}
});