Copy URLs

Copy all URLs to clipboard

Cos'è Copy URLs?

Copy URLs è un'estensione di Chrome sviluppata da https://melanto.com, e la sua funzione principale è "Copy all URLs to clipboard".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Copy URLs

Scarica i file di estensione Copy URLs 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

                        Copy all open pages (title and/or address) to clipboard. Select what to export (all tabs or just the web-pages; all windows or current window only) and how to export it (choose between several formats -- simple url list, HTML, CSV etc.) 

You can define your own (custom) format to generate specific url list (for example -- JavaScript array or XLS table ready to be copy/pasted in Excel)                    

Informazioni di Base sull'Estensione

Nome Copy URLs Copy URLs
ID efkmnflmpgiklkehhoeiibnmdfffmmjk
URL Ufficiale https://chromewebstore.google.com/detail/copy-urls/efkmnflmpgiklkehhoeiibnmdfffmmjk
Descrizione Copy all URLs to clipboard
Dimensione del File 47.07 KB
Conteggio Installazioni 36,688
Versione Corrente 1.0.0.3
Ultimo Aggiornamento 2020-03-25
Data di Pubblicazione 2020-03-25
Valutazione 4.79/5 Totale 29 Valutazioni
Sviluppatore https://melanto.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://melanto.com/apps/copy-urls/
URL della Pagina di Aiuto http://melanto.com/apps/copy-urls/help.html
URL della Pagina della Politica sulla Privacy https://melanto.com/privacy.html
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy URLs",
    "short_name": "Copy URLs",
    "version": "1.0.0.3",
    "manifest_version": 2,
    "homepage_url": "http:\/\/melanto.com\/apps\/copy-urls\/",
    "description": "Copy all URLs to clipboard",
    "icons": {
        "16": "icon.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "tabs",
        "clipboardWrite"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Copy URLs",
        "default_popup": "index.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "incognito": "spanning",
    "offline_enabled": true
}