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.".
Снимки экрана расширения
Скачать файл 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 |
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." } } } |