Selection to file

This extension allows the user to save selection on a text file.

Cos'è Selection to file?

Selection to file è un'estensione di Chrome sviluppata da mikewellback, e la sua funzione principale è "This extension allows the user to save selection on a text file.".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione Selection to file

Scarica i file di estensione Selection to file in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Have you ever needed to save part of the text from a web page?
What you can do nowadays, is to save the entire page, with all the unneeded images and resources attached (a lot of things, for just some text) or to copy the text, open a text editor, paste it and search for a path where to save it (a lot of steps!).
With Selection to file, today, you can simply select the text you want and click save: you will find all the text you saved in the download folder.                    

Informazioni di Base sull'Estensione

Nome Selection to file Selection to file
ID jolheiipneamokgnlmfbnmkngphjpnji
URL Ufficiale https://chromewebstore.google.com/detail/selection-to-file/jolheiipneamokgnlmfbnmkngphjpnji
Descrizione This extension allows the user to save selection on a text file.
Dimensione del File 8.52 KB
Conteggio Installazioni 162
Versione Corrente 1.1
Ultimo Aggiornamento 2023-05-05
Data di Pubblicazione 2017-12-21
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore mikewellback
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Selection to file",
    "description": "This extension allows the user to save selection on a text file.",
    "version": "1.1",
    "browser_action": {
        "default_icon": "g19.png",
        "default_popup": "popup.html",
        "default_title": "Selection to file info"
    },
    "icons": {
        "16": "g16.png",
        "48": "g48.png",
        "128": "g128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "downloads"
    ]
}