TabCopy

Quickly copy tabs to the clipboard

Was ist TabCopy?

TabCopy ist eine Chrome-Erweiterung, die von https://tabcopy.com entwickelt wurde, und ihr Hauptmerkmal ist "Quickly copy tabs to the clipboard".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

TabCopy-Erweiterungs-CRX-Datei herunterladen

Laden Sie TabCopy-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

                        Quickly copy open tabs to the clipboard in a variety of formats.

● Copy a single tab or all tabs.

● Use built-in formats like URL, Compact, Expanded, Link, Markdown, BB code, CSV, JSON, HTML, and HTML table.

● Define your own formats with custom templates.                    

Grundlegende Informationen zur Erweiterung

Name TabCopy TabCopy
ID micdllihgoppmejpecmkilggmaagfdmb
Offizielle URL https://chromewebstore.google.com/detail/tabcopy/micdllihgoppmejpecmkilggmaagfdmb
Beschreibung Quickly copy tabs to the clipboard
Dateigröße 96.39 KB
Installationsanzahl 92,725
Aktuelle Version 3.5
Letztes Update 2021-10-31
Veröffentlichungsdatum 2020-05-11
Bewertung 4.83/5 Insgesamt 536 Bewertungen
Entwickler https://tabcopy.com
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://sessionbuddy.com/privacy-policy
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TabCopy",
    "description": "Quickly copy tabs to the clipboard",
    "version": "3.5",
    "minimum_chrome_version": "43",
    "manifest_version": 2,
    "background": {
        "page": "bg.html"
    },
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/icon19.png",
            "38": "img\/icon38.png"
        }
    },
    "options_page": "options.html",
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "commands": {
        "copy-tabs": {
            "description": "Copy tabs",
            "suggested_key": {
                "default": "Alt+C"
            }
        }
    },
    "permissions": [
        "clipboardWrite",
        "tabs",
        "contextMenus"
    ],
    "optional_permissions": [
        "notifications"
    ]
}