Save Text to File

Save highlighted text to a file on your computer.

O que é Save Text to File?

Save Text to File é uma extensão do Chrome desenvolvida por bobbyrne01, e sua principal característica é "Save highlighted text to a file on your computer.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Save Text to File

Baixe arquivos de extensão Save Text to File no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Save Text to File Save Text to File
ID mkepenkbhepjelljcfiooignmpfgochi
URL Oficial https://chromewebstore.google.com/detail/save-text-to-file/mkepenkbhepjelljcfiooignmpfgochi
Descrição Save highlighted text to a file on your computer.
Tamanho do Arquivo 17.48 KB
Contagem de Instalações 4,372
Versão Atual 2.2.1
Última Atualização 2021-09-06
Data de Publicação 2020-02-03
Classificação 3.94/5 Total de 33 Avaliações
Desenvolvedor bobbyrne01
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/bobbyrne01/save-text-to-file-chrome
URL da Página de Ajuda https://github.com/bobbyrne01/save-text-to-file-chrome/issues
Idiomas Suportados 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."
        }
    }
}