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 |
| 公式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 |
| Eメール | [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."
}
}
} | |