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.”。
擴展截圖
下載Save Text to File擴展crx文件
下載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 擴展基本資訊
| 名稱 | |
| ID | mkepenkbhepjelljcfiooignmpfgochi |
| 官方網址 | 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."
}
}
} | |