Quick URL copy

Copy current page URL and description to clipboard by hotkey (Ctrl+Alt+C)

Was ist Quick URL copy?

Quick URL copy ist eine Chrome-Erweiterung, die von Mikhail Aksenov entwickelt wurde, und ihr Hauptmerkmal ist "Copy current page URL and description to clipboard by hotkey (Ctrl+Alt+C)".

Erweiterungsscreenshots

screenshot

Quick URL copy-Erweiterungs-CRX-Datei herunterladen

Laden Sie Quick URL copy-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

                        Simple extension which copied to clipboard title and URL current page.
For Atlassian JIRA issue number, description and link.

Just press Ctrl-Alt-C / Control-Command-C for Mac

Add some defaults for YouTube and Trello.                    

Grundlegende Informationen zur Erweiterung

Name Quick URL copy Quick URL copy
ID khfjmphfblpcbnmlamiclchbdndleabd
Offizielle URL https://chromewebstore.google.com/detail/quick-url-copy/khfjmphfblpcbnmlamiclchbdndleabd
Beschreibung Copy current page URL and description to clipboard by hotkey (Ctrl+Alt+C)
Dateigröße 14.52 KB
Installationsanzahl 100
Aktuelle Version Make title useful again for izbirkom.ru
Letztes Update 2022-02-16
Veröffentlichungsdatum 2020-03-28
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Mikhail Aksenov
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quick URL copy",
    "version": "1.5.8",
    "version_name": "Make title useful again for izbirkom.ru",
    "manifest_version": 2,
    "description": "Copy current page URL and description to clipboard by hotkey (Ctrl+Alt+C)",
    "short_name": "Copy page info",
    "browser_action": {
        "default_icon": "icon128.png"
    },
    "homepage_url": "https:\/\/github.com\/xeningem\/quick_url_copy",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/\/*:\/*\/*"
            ],
            "js": [
                "getText.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "persistent": false,
        "page": "background.html"
    },
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "storage"
    ]
}