Copy All Urls

Copy tabs URL to clipboard (formats : text, HTML, JSON or custom). Paste to open multiple URL at one go.

Was ist Copy All Urls?

Copy All Urls ist eine Chrome-Erweiterung, die von Vincent Paré entwickelt wurde, und ihr Hauptmerkmal ist "Copy tabs URL to clipboard (formats : text, HTML, JSON or custom). Paste to open multiple URL at one go.".

Erweiterungsscreenshots

screenshot
screenshot

Copy All Urls-Erweiterungs-CRX-Datei herunterladen

Laden Sie Copy All 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

                        Two features :
- Copy all opened tabs URL into clipboard. 4 formats available : Text, HTML, JSON and custom format.
- Paste to open all URLs in the clipboard into new tabs.

You can use keyboard shortcuts and copy only selected tabs.                    

Grundlegende Informationen zur Erweiterung

Name Copy All Urls Copy All Urls
ID djdmadneanknadilpjiknlnanaolmbfk
Offizielle URL https://chromewebstore.google.com/detail/copy-all-urls/djdmadneanknadilpjiknlnanaolmbfk
Beschreibung Copy tabs URL to clipboard (formats : text, HTML, JSON or custom). Paste to open multiple URL at one go.
Dateigröße 128 KB
Installationsanzahl 317,430
Aktuelle Version 2.11
Letztes Update 2021-06-02
Veröffentlichungsdatum 2015-01-25
Bewertung 4.61/5 Insgesamt 401 Bewertungen
Entwickler Vincent Paré
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://vincepare.github.io/CopyAllUrl_Chrome/
Hilfeseite URL https://github.com/vincepare/CopyAllUrl_Chrome/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "browser_action": {
        "default_icon": "img\/umbrella_19.png",
        "default_title": "Copy URLs to clipboard",
        "default_popup": "popup.html"
    },
    "description": "Copy tabs URL to clipboard (formats : text, HTML, JSON or custom). Paste to open multiple URL at one go.",
    "icons": {
        "128": "img\/umbrella_128.png"
    },
    "background": {
        "scripts": [
            "vendor\/jquery-1.7.2_min.js",
            "vendor\/encoder.js",
            "background.js"
        ]
    },
    "commands": {
        "copy": {
            "suggested_key": {
                "default": "Alt+C"
            },
            "description": "Copy"
        },
        "paste": {
            "suggested_key": {
                "default": "Alt+V"
            },
            "description": "Paste"
        }
    },
    "name": "Copy All Urls",
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "clipboardRead",
        "clipboardWrite",
        "notifications"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "version": "2.11",
    "manifest_version": 2
}