Save Text to File

Save highlighted text to a file on your computer.

Save Text to File란 무엇입니까?

Save Text to File은(는) bobbyrne01에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save highlighted text to a file on your computer."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Save Text to File 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Save Text to File Save Text to File
ID mkepenkbhepjelljcfiooignmpfgochi
공식 URL https://chromewebstore.google.com/detail/save-text-to-file/mkepenkbhepjelljcfiooignmpfgochi
설명 Save highlighted text to a file on your computer.
파일 크기 17.48 KB
설치 횟수 4,372
현재 버전 2.2.1
최근 업데이트 2021-09-06
출시 날짜 2020-02-03
평점 3.94/5 총 33 개의 평점
개발자 bobbyrne01
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/bobbyrne01/save-text-to-file-chrome
도움말 페이지 URL https://github.com/bobbyrne01/save-text-to-file-chrome/issues
지원되는 언어 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."
        }
    }
}