Quick URL copy

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

What is Quick URL copy?

Quick URL copy is a Chrome extension developed by Mikhail Aksenov, and its main feature is "Copy current page URL and description to clipboard by hotkey (Ctrl+Alt+C)".

Extension Screenshots

screenshot

Download Quick URL copy Extension CRX File

Download Quick URL copy extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Quick URL copy Quick URL copy
ID khfjmphfblpcbnmlamiclchbdndleabd
Official URL https://chromewebstore.google.com/detail/quick-url-copy/khfjmphfblpcbnmlamiclchbdndleabd
Description Copy current page URL and description to clipboard by hotkey (Ctrl+Alt+C)
File Size 14.52 KB
Installation Count 100
Current Version Make title useful again for izbirkom.ru
Last Updated 2022-02-16
Publish Date 2020-03-28
Rating 5.00/5 Total 1 Ratings
Developer Mikhail Aksenov
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}