diff --git a/manage.html b/manage.html index 6c22606f..cbbe19f2 100644 --- a/manage.html +++ b/manage.html @@ -205,32 +205,17 @@
-chrome.extension.getBackgroundPage().getStyles({}, e => {
- let styles = JSON.stringify(e);
- let link = document.createElement('a');
- let data = new Blob([styles], {type: 'text/plain;charset=utf-8;'});
- link.href = window.URL.createObjectURL(data);
- link.setAttribute('download', 'styles.json');
- document.body.appendChild(link);
- link.click();
- document.body.removeChild(link);
-});
-
-