single-file-core 1.1.76 → 1.1.78
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +0 -0
- package/LICENSE +0 -0
- package/core/constants.js +13 -0
- package/core/helper.js +604 -596
- package/core/index.js +2234 -2231
- package/core/infobar.js +276 -272
- package/core/util.js +408 -407
- package/modules/css-fonts-alt-minifier.js +342 -342
- package/modules/css-fonts-minifier.js +376 -376
- package/modules/css-matched-rules.js +0 -0
- package/modules/css-medias-alt-minifier.js +90 -90
- package/modules/css-rules-minifier.js +0 -0
- package/modules/html-images-alt-minifier.js +0 -0
- package/modules/html-minifier.js +0 -0
- package/modules/html-serializer.js +0 -0
- package/modules/index.js +0 -0
- package/modules/template-formatter.js +0 -0
- package/package.json +18 -18
- package/processors/frame-tree/content/content-frame-tree.js +426 -424
- package/processors/hooks/content/content-hooks-frames-web.js +0 -0
- package/processors/hooks/content/content-hooks-frames.js +0 -0
- package/processors/index.js +0 -0
- package/processors/lazy/content/content-lazy-loader.js +233 -233
- package/single-file-bootstrap.js +55 -55
- package/single-file-editor-helper.js +49 -49
- package/single-file-frames.js +0 -0
- package/single-file-hooks-frames.js +0 -0
- package/single-file-infobar.js +62 -62
- package/single-file.js +101 -101
- package/vendor/css-font-property-parser.js +0 -0
- package/vendor/css-media-query-parser.js +0 -0
- package/vendor/css-minifier.js +0 -0
- package/vendor/css-tree.js +0 -0
- package/vendor/css-unescape.js +0 -0
- package/vendor/html-srcset-parser.js +0 -0
- package/vendor/index.js +0 -0
- package/vendor/mime-type-parser.js +0 -0
package/.eslintrc.js
CHANGED
|
File without changes
|
package/LICENSE
CHANGED
|
File without changes
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
const SINGLE_FILE_PREFIX = "single-file-";
|
|
2
|
+
const COMMENT_HEADER = "Page saved with SingleFile";
|
|
3
|
+
const SINGLE_FILE_SIGNATURE = "SingleFile";
|
|
4
|
+
const WAIT_FOR_USERSCRIPT_PROPERTY_NAME = "_singleFile_waitForUserScript";
|
|
5
|
+
const MESSAGE_PREFIX = "__frameTree__::";
|
|
6
|
+
|
|
7
|
+
export {
|
|
8
|
+
SINGLE_FILE_PREFIX,
|
|
9
|
+
COMMENT_HEADER,
|
|
10
|
+
SINGLE_FILE_SIGNATURE,
|
|
11
|
+
WAIT_FOR_USERSCRIPT_PROPERTY_NAME,
|
|
12
|
+
MESSAGE_PREFIX
|
|
13
|
+
};
|