Quick URL copy

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

Qu'est-ce que Quick URL copy ?

Quick URL copy est une extension Chrome développée par Mikhail Aksenov, et sa fonction principale est "Copy current page URL and description to clipboard by hotkey (Ctrl+Alt+C)".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Quick URL copy

Téléchargez les fichiers d'extension Quick URL copy au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Quick URL copy Quick URL copy
ID khfjmphfblpcbnmlamiclchbdndleabd
URL Officiel https://chromewebstore.google.com/detail/quick-url-copy/khfjmphfblpcbnmlamiclchbdndleabd
Description Copy current page URL and description to clipboard by hotkey (Ctrl+Alt+C)
Taille du Fichier 14.52 KB
Nombre d'Installations 100
Version Actuelle Make title useful again for izbirkom.ru
Dernière Mise à Jour 2022-02-16
Date de Publication 2020-03-28
Évaluation 5.00/5 Total 1 Évaluations
Développeur Mikhail Aksenov
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}