Single html downloader
Download as a single html file for the current page with images and styles.
Τι είναι το Single html downloader;
Το Single html downloader είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.tnksoft.com, και η κύρια λειτουργία του είναι "Download as a single html file for the current page with images and styles.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Single html downloader
Λήψη αρχείων επέκτασης Single html downloader σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
"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 |
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:\/\/*\/*" ] } |