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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Download as a single html file for the current page with images and styles."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Single html downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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:\/\/*\/*"
    ]
}