Save Text to File

Save highlighted text to a file on your computer.

Save Text to File là gì?

Save Text to File là một tiện ích mở rộng Chrome được phát triển bởi bobbyrne01, và tính năng chính của nó là "Save highlighted text to a file on your computer.".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Save Text to File

Tải xuống các tệp mở rộng Save Text to File 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

                        Save text from a web page to a file anywhere on your computer.

Highlight some text, right-click and select "Save Text to File".

Text will be saved to a new file or else appended to an existing file, depending on option selections.

Features:
- Specify any directory to save files on your computer
- Add date of timestamp to saved file name
- Various date formats to choose from
- Save current URL, page title in file
- Optional directory selection dialog on save

Full install instructions:
https://github.com/bobbyrne01/save-text-to-file-chrome/blob/master/doc/installation.md

Please donate to support development:
Paypal: https://www.paypal.me/bobbyrne01

Open source:
Released under GNU GPL v3 license ..
https://github.com/bobbyrne01/save-text-to-file-chrome                    

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

Tên Save Text to File Save Text to File
ID mkepenkbhepjelljcfiooignmpfgochi
URL Chính Thức https://chromewebstore.google.com/detail/save-text-to-file/mkepenkbhepjelljcfiooignmpfgochi
Mô tả Save highlighted text to a file on your computer.
Kích Thước Tệp 17.48 KB
Số Lần Cài Đặt 4,372
Phiên Bản Hiện Tại 2.2.1
Cập Nhật Lần Cuối 2021-09-06
Ngày Phát Hành 2020-02-03
Đánh Giá 3.94/5 Tổng số 33 Đánh Giá
Nhà Phát Triển bobbyrne01
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/bobbyrne01/save-text-to-file-chrome
URL Trang Trợ Giúp https://github.com/bobbyrne01/save-text-to-file-chrome/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Save Text to File",
    "description": "Save highlighted text to a file on your computer.",
    "version": "2.2.1",
    "permissions": [
        "contextMenus",
        "downloads",
        "storage",
        "notifications",
        "activeTab",
        "nativeMessaging"
    ],
    "background": {
        "scripts": [
            "backgroundScript.js"
        ],
        "persistent": false
    },
    "manifest_version": 2,
    "icons": {
        "64": "images\/ico.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "commands": {
        "save-text-to-file": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y"
            },
            "description": "Saves the selected text from the active tab to a file."
        }
    }
}