stylus/apply.js

49 lines
1.4 KiB
JavaScript
Raw Normal View History

chrome.extension.sendMessage({method: "getStyles", matchUrl: location.href, enabled: true, updateBadge: window == window.top}, function(response) {
2012-04-16 01:56:12 +00:00
response.forEach(applyStyle);
});
chrome.extension.onMessage.addListener(function(request, sender, sendResponse) {
2012-04-16 01:56:12 +00:00
switch(request.name) {
case "styleDeleted":
removeStyle(request.id);
break;
case "styleUpdated":
removeStyle(request.style.id);
//fallthrough
case "styleAdded":
if (request.style.enabled == "true") {
applyStyle(request.style);
2012-04-16 01:56:12 +00:00
}
}
});
function removeStyle(id) {
var e = document.getElementById("stylish-" + id);
if (e) {
e.parentNode.removeChild(e);
}
}
2012-06-02 04:11:32 +00:00
2012-04-16 01:56:12 +00:00
function applyStyle(s) {
chrome.extension.sendMessage({method: "getStyleApplies", style: s, url: location.href}, function(response) {
if (response && response.length > 0) {
applySections(s, response);
2012-04-16 01:56:12 +00:00
}
2012-06-02 04:11:32 +00:00
});
2012-04-16 01:56:12 +00:00
}
function applySections(style, sections) {
var styleElement = document.createElement("style");
styleElement.setAttribute("id", "stylish-" + style.id);
styleElement.setAttribute("class", "stylish");
styleElement.setAttribute("type", "text/css");
styleElement.appendChild(document.createTextNode(sections.map(function(section) {
return section.code;
}).join("\n")));
if (document.head) {
document.head.appendChild(styleElement);
} else {
document.documentElement.appendChild(styleElement);
2012-04-16 01:56:12 +00:00
}
}