Copy URLs

Copy all URLs to clipboard

Was ist Copy URLs?

Copy URLs ist eine Chrome-Erweiterung, die von https://melanto.com entwickelt wurde, und ihr Hauptmerkmal ist "Copy all URLs to clipboard".

Erweiterungsscreenshots

screenshot
screenshot

Copy URLs-Erweiterungs-CRX-Datei herunterladen

Laden Sie Copy URLs-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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)                    

Grundlegende Informationen zur Erweiterung

Name Copy URLs Copy URLs
ID efkmnflmpgiklkehhoeiibnmdfffmmjk
Offizielle URL https://chromewebstore.google.com/detail/copy-urls/efkmnflmpgiklkehhoeiibnmdfffmmjk
Beschreibung Copy all URLs to clipboard
Dateigröße 47.07 KB
Installationsanzahl 36,688
Aktuelle Version 1.0.0.3
Letztes Update 2020-03-25
Veröffentlichungsdatum 2020-03-25
Bewertung 4.79/5 Insgesamt 29 Bewertungen
Entwickler https://melanto.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://melanto.com/apps/copy-urls/
Hilfeseite URL http://melanto.com/apps/copy-urls/help.html
URL der Datenschutzrichtlinien-Seite https://melanto.com/privacy.html
Unterstützte Sprachen 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
}