Save Text to File
Save highlighted text to a file on your computer.
Qu'est-ce que Save Text to File ?
Save Text to File est une extension Chrome développée par bobbyrne01, et sa fonction principale est "Save highlighted text to a file on your computer.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Save Text to File
Téléchargez les fichiers d'extension Save Text to File au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Save Text to File |
ID | mkepenkbhepjelljcfiooignmpfgochi |
URL Officiel | https://chromewebstore.google.com/detail/save-text-to-file/mkepenkbhepjelljcfiooignmpfgochi |
Description | Save highlighted text to a file on your computer. |
Taille du Fichier | 17.48 KB |
Nombre d'Installations | 4,372 |
Version Actuelle | 2.2.1 |
Dernière Mise à Jour | 2021-09-06 |
Date de Publication | 2020-02-03 |
Évaluation | 3.94/5 Total 33 Évaluations |
Développeur | bobbyrne01 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/bobbyrne01/save-text-to-file-chrome |
URL de la Page d'Aide | https://github.com/bobbyrne01/save-text-to-file-chrome/issues |
Langues Prises en Charge | 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." } } } |