Quick URL copy

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

Apa itu Quick URL copy?

Quick URL copy adalah ekstensi Chrome yang dikembangkan oleh Mikhail Aksenov, dan fitur utamanya adalah "Copy current page URL and description to clipboard by hotkey (Ctrl+Alt+C)".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Quick URL copy

Unduh file ekstensi Quick URL copy dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Quick URL copy Quick URL copy
ID khfjmphfblpcbnmlamiclchbdndleabd
URL Resmi https://chromewebstore.google.com/detail/quick-url-copy/khfjmphfblpcbnmlamiclchbdndleabd
Deskripsi Copy current page URL and description to clipboard by hotkey (Ctrl+Alt+C)
Ukuran File 14.52 KB
Jumlah Instalasi 100
Versi Saat Ini Make title useful again for izbirkom.ru
Terakhir Diperbarui 2022-02-16
Tanggal Publikasi 2020-03-28
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Mikhail Aksenov
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}