snapshot

Notice

Note

about HTML file

This extension check some tags in the document.

about CSS file

This extension check "@import" and "background(-image)" in the css document.
When "@import" is found, do the check recursively.

@import

This extension check below cases.

@import url(main.css);        /* CASE A: @import without quote */
@import url("main.css");      /* CASE B: @import with quote */
@import url(main.css) print;  /* CASE C: @import without quote, and mediatype */
@import url("main.css) print; /* CASE D: @import with quote, and mediatype */

background(-image)

This extension check below cases.

background:url(../images/title.gif);         /* CASE A: background without quote */
background:url("../images/title.gif");       /* CASE B: background with quote */
background-image:url(../images/title.gif);   /* CASE C: background-image without quote */
background-image:url("../images/title.gif"); /* CASE D: background-image with quote */

with original file.

You can backup the files with orignal file together.
Ex. hoge.jpeg is backuped with hoge.png

change log

ver1.0.5

ver1.0.4

ver1.0.3

ver1.0.2

ver1.0.1