Save Webpage As Word Document

Create Microsoft Word document from complete or selected content of multiple web pages.

Save Webpage As Word Document là gì?

Save Webpage As Word Document là một tiện ích mở rộng Chrome được phát triển bởi http://www.youconvertit.com, và tính năng chính của nó là "Create Microsoft Word document from complete or selected content of multiple web pages.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng Save Webpage As Word Document

Tải xuống các tệp mở rộng Save Webpage As Word Document dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension converts complete web page or selected part of it into Microsoft Word Document (docx). You can also choose to convert content from multiple web pages or only selected part of them into a single word document. The converted document can be downloaded to local disk. 

This extension reads the HTML structure of the current page or the selected part and converts it into corresponding docx structure.


LIMITATIONS :-

1. INSTALL / UPDATE
   - After installing or updating, this extension will not work for tabs which were open prior to installation/update unless those tabs are reloaded or chrome is restarted.

2. WHAT CAN I CONVERT?
   - This extension can convert any web page into Microsoft word document except following pages -
   
   All the Chrome Web Store pages (including this one).
   Urls starting with chrome:// for ex. chrome://extensions
   Urls starting with chrome-extension://

3. SOME CONVERTED PAGES DON'T LOOK THE SAME
   - All the contents are converted into word document with most of the formatting intact. There can be differences in the layout though.

4. WHY DOES SAVED DOCUMENT FOR SOME WEB PAGES SHOW SQUARE BOXES?
   - It specially happens for the web pages which are in language other than English. Currently app doesn't support conversion of fonts required for all the languages.

5. WHY DOESN'T IT WORK FOR LOCAL HTML FILES?
   - For security reasons chrome browser doesn't allow extension to access File Urls unless an explicit permission from the User.

If you want extension to work for local HTML files then all you need to do is -
  1. Visit extensions management page (chrome://extensions). 
  2. Go to "Save webpage as word document" extension. 
  3. Check "Allow access to file URLs" check-box. 
  4. Reload your local HTML file.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Save Webpage As Word Document Save Webpage As Word Document
ID mcebgdgbcbdkgdljffnkkbekldnidbmn
URL Chính Thức https://chrome.google.com/webstore/detail/save-webpage-as-word-docu/mcebgdgbcbdkgdljffnkkbekldnidbmn
Mô tả Create Microsoft Word document from complete or selected content of multiple web pages.
Kích Thước Tệp 192 KB
Số Lần Cài Đặt 31,207
Phiên Bản Hiện Tại 0.1.8
Cập Nhật Lần Cuối 2020-06-01
Ngày Phát Hành 2020-06-01
Đánh Giá 2.96/5 Tổng số 169 Đánh Giá
Nhà Phát Triển http://www.youconvertit.com
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://www.youconvertit.com/index.php?page=privacy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Save Webpage As Word Document",
    "default_locale": "en",
    "description": "Create Microsoft Word document from complete or selected content of multiple web pages.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "version": "0.1.8",
    "icons": {
        "128": "images\/128.png"
    },
    "browser_action": {
        "default_icon": "images\/128.png"
    },
    "permissions": [
        "contextMenus",
        ""
    ],
    "content_scripts": [
        {
            "js": [
                "jquery-3.1.1.min.js",
                "vendor\/FileSaver.js",
                "html-docx.js",
                "content.js"
            ],
            "css": [
                "style.css"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "images\/*.png",
        "style.css",
        "contextMenus"
    ]
}