Merge pull request #97 from tophf/own-pages-apply-earlier

Apply styles to own pages earlier to avoid flicker
This commit is contained in:
Jason Barnabe 2015-04-07 10:14:08 -05:00
commit 65e38a581f

View File

@ -1,4 +1,9 @@
chrome.extension.sendMessage({method: "getStyles", matchUrl: location.href, enabled: true, asHash: true}, applyStyles);
var request = {method: "getStyles", matchUrl: location.href, enabled: true, asHash: true};
if (location.href.indexOf(chrome.extension.getURL("")) == 0) {
chrome.extension.getBackgroundPage().getStyles(request, applyStyles);
} else {
chrome.extension.sendMessage(request, applyStyles);
}
chrome.extension.onMessage.addListener(function(request, sender, sendResponse) {
switch (request.method) {