var styleTemplate = tHTML('\
\
\ \
\
\ \
\ \ \ \ \
\
\
\ '); var writeStyleTemplate = document.createElement("a"); writeStyleTemplate.className = "write-style-link"; var installed = document.getElementById("installed"); if (!prefs.getPref("popup.stylesFirst")) { document.body.insertBefore(document.querySelector("body > .actions"), installed); } chrome.tabs.query({active: true, currentWindow: true}, function(tabs) { // Only one is active, I hope var tab = tabs[0]; // The new tab lies about what it is. if (tab.url == "chrome://newtab/") { chrome.tabs.sendMessage(tab.id, {method: "realURL"}, null, updatePopUp); } else { updatePopUp(tab.url); } }); function updatePopUp(url) { var urlWillWork = /^(file|http|https|chrome\-extension):/.exec(url); if (!urlWillWork) { document.body.classList.add("blocked"); document.getElementById("unavailable").style.display = "block"; return; } chrome.extension.sendMessage({method: "getStyles", matchUrl: url}, showStyles); document.querySelector("#find-styles a").href = "https://userstyles.org/styles/browse/all/" + encodeURIComponent("file" === urlWillWork[1] ? "file:" : url); // Write new style links var writeStyleLinks = [], container = document.createElement('span'); container.id = "match"; // For this URL var urlLink = writeStyleTemplate.cloneNode(true); urlLink.href = "edit.html?url-prefix=" + encodeURIComponent(url); urlLink.appendChild(document.createTextNode( // switchable; default="this URL" !prefs.getPref("popup.breadcrumbs.usePath") ? t("writeStyleForURL").replace(/ /g, "\u00a0") : /\/\/[^/]+\/(.*)/.exec(url)[1] )); urlLink.title = "url-prefix(\"$\")".replace("$", url); writeStyleLinks.push(urlLink); document.querySelector("#write-style").appendChild(urlLink) if (prefs.getPref("popup.breadcrumbs")) { // switchable; default=enabled urlLink.addEventListener("mouseenter", function(event) { this.parentNode.classList.add("url()") }, false); urlLink.addEventListener("focus", function(event) { this.parentNode.classList.add("url()") }, false); urlLink.addEventListener("mouseleave", function(event) { this.parentNode.classList.remove("url()") }, false); urlLink.addEventListener("blur", function(event) { this.parentNode.classList.remove("url()") }, false); } // For domain var domains = getDomains(url) domains.forEach(function(domain) { // Don't include TLD if (domains.length > 1 && domain.indexOf(".") == -1) { return; } var domainLink = writeStyleTemplate.cloneNode(true); domainLink.href = "edit.html?domain=" + encodeURIComponent(domain); domainLink.appendChild(document.createTextNode(domain)); domainLink.title = "domain(\"$\")".replace("$", domain); domainLink.setAttribute("subdomain", domain.substring(0, domain.indexOf("."))); writeStyleLinks.push(domainLink); }); var writeStyle = document.querySelector("#write-style"); writeStyleLinks.forEach(function(link, index) { link.addEventListener("click", openLinkInTabOrWindow, false); container.appendChild(link); }); if (prefs.getPref("popup.breadcrumbs")) { container.classList.add("breadcrumbs"); container.appendChild(container.removeChild(container.firstChild)); } writeStyle.appendChild(container); } function showStyles(styles) { var enabledFirst = prefs.getPref("popup.enabledFirst"); styles.sort(function(a, b) { if (enabledFirst && a.enabled !== b.enabled) return !(a.enabled < b.enabled) ? -1 : 1; return a.name.localeCompare(b.name); }); if (styles.length == 0) { installed.innerHTML = "
" + t('noStylesForSite') + "
"; } styles.map(createStyleElement).forEach(function(e) { installed.appendChild(e); }); } function createStyleElement(style) { var e = styleTemplate.cloneNode(true); var checkbox = e.querySelector(".checker"); checkbox.id = "style-" + style.id; checkbox.checked = style.enabled == "true"; e.setAttribute("class", "entry " + (style.enabled == "true" ? "enabled" : "disabled")); e.setAttribute("style-id", style.id); var styleName = e.querySelector(".style-name"); styleName.appendChild(document.createTextNode(style.name)); styleName.setAttribute("for", "style-" + style.id); styleName.checkbox = checkbox; var editLink = e.querySelector(".style-edit-link"); editLink.setAttribute("href", editLink.getAttribute("href") + style.id); editLink.addEventListener("click", openLinkInTabOrWindow, false); styleName.addEventListener("click", function() { this.checkbox.click(); event.preventDefault(); }); // clicking the checkbox will toggle it, and this will run after that happens checkbox.addEventListener("click", function() { enable(event, event.target.checked); }, false); e.querySelector(".enable").addEventListener("click", function() { enable(event, true); }, false); e.querySelector(".disable").addEventListener("click", function() { enable(event, false); }, false); e.querySelector(".delete").addEventListener("click", function() { doDelete(event, false); }, false); return e; } function enable(event, enabled) { var id = getId(event); enableStyle(id, enabled); } function doDelete() { // Opera can't do confirms in popups if (getBrowser() != "Opera") { if (!confirm(t('deleteStyleConfirm'))) { return; } } var id = getId(event); deleteStyle(id); } function getBrowser() { if (navigator.userAgent.indexOf("OPR") > -1) { return "Opera"; } return "Chrome"; } function getId(event) { var e = event.target; while (e) { if (e.hasAttribute("style-id")) { return e.getAttribute("style-id"); } e = e.parentNode; } return null; } function openLinkInTabOrWindow(event) { event.preventDefault(); if (prefs.getPref('openEditInWindow', false)) { var options = {url: event.target.href} var wp = prefs.getPref('windowPosition', {}); for (var k in wp) options[k] = wp[k]; chrome.windows.create(options); } else { openLink(event); } } function openLink(event) { event.preventDefault(); chrome.extension.sendMessage({method: "openURL", url: event.target.href}); close(); } function handleUpdate(style) { var styleElement = installed.querySelector("[style-id='" + style.id + "']"); if (styleElement) { installed.replaceChild(createStyleElement(style), styleElement); } else if (chrome.extension.getBackgroundPage().getApplicableSections(style, location.href).length) { // a new style for the current url is installed document.getElementById("unavailable").style.display = "none"; installed.appendChild(createStyleElement(style)); } } function handleDelete(id) { var styleElement = installed.querySelector("[style-id='" + id + "']"); if (styleElement) { installed.removeChild(styleElement); } } function handleDisableAll(disableAll) { installed.classList.toggle("disabled", disableAll); } chrome.extension.onMessage.addListener(function(request, sender, sendResponse) { if (request.method == "updatePopup") { switch (request.reason) { case "styleUpdated": handleUpdate(request.style); break; case "styleDeleted": handleDelete(request.id); break; case "styleDisableAll": document.getElementById("disableAll").checked = request.disableAll; handleDisableAll(request.disableAll); break; } } }); ["find-styles-link", "open-manage-link"].forEach(function(id) { document.getElementById(id).addEventListener("click", openLink, false); }); loadPrefs({"disableAll": false}); handleDisableAll(prefs.getPref("disableAll")); document.getElementById("disableAll").addEventListener("change", function(event) { notifyAllTabs({method: "styleDisableAll", disableAll: event.target.checked}); });