Recensioni per Save Page WE
Save Page WE di DW-dev
Recensione di Utente Firefox 6696096
Valutata 4 su 5
di Utente Firefox 6696096, 7 anni faDescription says that "Save Current State" saves "CSS images (currently displayed)", but the extension does no such thing.
The URL in question: https://modnakasta.ua/product/1768595:609/
The header and footer panels of the page use "data:image/svg+xml;base64" as background for "before" pseudo-element.
The "Save Chosen Items" saves these "images" correctly, for example:
.header-top_department::before {
content: "";
background: url(data:image/svg+xml;base64,SOME-LONG-CODE) no-repeat 50%;
}
But both "Save Current State" and "Save Complete Page"
(with all check-boxes selected) save the same code like this:
.header-top_department::before {
content: "";
background: url() no-repeat 50%;
}
... with empty url()
The problem: the images are "currently displayed", but are not saved in "Save Current State" and "Save Complete Page".
This is frustrating.
The URL in question: https://modnakasta.ua/product/1768595:609/
The header and footer panels of the page use "data:image/svg+xml;base64" as background for "before" pseudo-element.
The "Save Chosen Items" saves these "images" correctly, for example:
.header-top_department::before {
content: "";
background: url(data:image/svg+xml;base64,SOME-LONG-CODE) no-repeat 50%;
}
But both "Save Current State" and "Save Complete Page"
(with all check-boxes selected) save the same code like this:
.header-top_department::before {
content: "";
background: url() no-repeat 50%;
}
... with empty url()
The problem: the images are "currently displayed", but are not saved in "Save Current State" and "Save Complete Page".
This is frustrating.