Save Text to File

Save highlighted text to a file on your computer.

Save Text to Fileคืออะไร?

Save Text to File เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bobbyrne01 และคุณลักษณะหลักของมันคือ "Save highlighted text to a file on your computer."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Save Text to File

ดาวน์โหลดไฟล์ส่วนขยาย Save Text to File ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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."
        }
    }
}