Single html downloader

Download as a single html file for the current page with images and styles.

Single html downloader란 무엇입니까?

Single html downloader은(는) https://www.tnksoft.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download as a single html file for the current page with images and styles."입니다.

확장 프로그램 스크린샷

screenshot

Single html downloader 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        "Single html downloader" is the extension program which downloads the website as a single HTML file which you are watching now. Usually, Chrome stores pictures, style sheets, and script files in another folder with a downloaded HTML file. In this extension, embedding all of those files as HTML5 has actualized making of a single file. By using this extension, you will become easy to manage backed up web pages.

You can set the file size limit for each file type. For details, please open this extension's option.

*This extension is using the technology of HTML5. Therefore, a web page is stored as HTML5 with UTF-8 encoding. When the page you want to download is not written in UTF-8 and HTML5, a design and a layout may collapse.

I have a favor for you :
Please tell me the complaint before you make a negative evaluation. If you submitted ★1 for the reason of bugs, those problems will not solve because those ratings are not reported to me directly.                    

확장 프로그램 기본 정보

이름 Single html downloader Single html downloader
ID oahammdeiaankgiieafmgdpdoefadehl
공식 URL https://chromewebstore.google.com/detail/single-html-downloader/oahammdeiaankgiieafmgdpdoefadehl
설명 Download as a single html file for the current page with images and styles.
파일 크기 61.71 KB
설치 횟수 14,694
현재 버전 2.8.1
최근 업데이트 2021-01-22
출시 날짜 2020-06-27
평점 3.82/5 총 28 개의 평점
개발자 https://www.tnksoft.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.tnksoft.com/soft/internet/singlehtml/
도움말 페이지 URL https://www.tnksoft.com/contact/
개인정보 보호 정책 페이지 URL https://www.tnksoft.com/soft/internet/privacy.php
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_title__",
    "description": "__MSG_about__",
    "author": "TNK Software \/ Tanaka Yusuke",
    "homepage_url": "https:\/\/www.tnksoft.com\/",
    "version": "2.8.1",
    "default_locale": "en",
    "icons": {
        "16": "res\/icon16.png",
        "32": "res\/icon32.png",
        "64": "res\/icon64.png",
        "128": "res\/icon128.png"
    },
    "options_page": "setting\/index.htm",
    "options_ui": {
        "page": "setting\/index.htm",
        "open_in_tab": true
    },
    "background": {
        "persistent": true,
        "scripts": [
            "util.js",
            "background.js",
            "convert.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "res\/icon16.png",
            "32": "res\/icon32.png",
            "64": "res\/icon64.png",
            "128": "res\/icon128.png"
        },
        "default_title": "__MSG_title__"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "util.js",
                "start.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "idle.js"
            ],
            "css": [
                "popup.css"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "contextMenus",
        "downloads",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}