Copy Title as Hyper-Link for YouTube™

Copy (CTRL+C, CMD+C, Edit->Copy) with nothing selected and the title of the current YouTube video will be copied as a hyperlink

Qu'est-ce que Copy Title as Hyper-Link for YouTube™ ?

Copy Title as Hyper-Link for YouTube™ est une extension Chrome développée par Leigh Murray, et sa fonction principale est "Copy (CTRL+C, CMD+C, Edit->Copy) with nothing selected and the title of the current YouTube video will be copied as a hyperlink".

Télécharger le fichier CRX de l'extension Copy Title as Hyper-Link for YouTube™

Téléchargez les fichiers d'extension Copy Title as Hyper-Link for YouTube™ 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

                        *Make sure you refresh your YouTube tabs after installing this extension.

If you issue a Copy command (CTRL+C, CMD+C, Edit->Copy) with nothing selected or highlighted on the page, the title of the current YouTube video will be copied as a hyperlink using the short youtu.be format so you can paste it in Word, etc.

A 'Copied!' notification will display briefly when the hyperlink is copied successfully.                    

Informations de Base sur l'Extension

Nom Copy Title as Hyper-Link for YouTube™ Copy Title as Hyper-Link for YouTube™
ID hgcjodjfhekkfffkikfmplmedpkbacbd
URL Officiel https://chrome.google.com/webstore/detail/copy-title-as-hyper-link/hgcjodjfhekkfffkikfmplmedpkbacbd
Description Copy (CTRL+C, CMD+C, Edit->Copy) with nothing selected and the title of the current YouTube video will be copied as a hyperlink
Taille du Fichier 46.3 KB
Nombre d'Installations 45
Version Actuelle 1.1
Dernière Mise à Jour 2013-11-11
Date de Publication 2013-11-11
Évaluation 3.80/5 Total 5 Évaluations
Développeur Leigh Murray
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy Title as Hyper-Link for YouTube\u2122",
    "description": "Copy (CTRL+C, CMD+C, Edit->Copy) with nothing selected and the title of the current YouTube video will be copied as a hyperlink",
    "version": "1.1",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.youtube.com\/watch*",
                "https:\/\/*.youtube.com\/watch*"
            ],
            "js": [
                "myscript.js",
                "jquery.min.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "manifest_version": 2,
    "permissions": [
        "http:\/\/*.youtube.com\/*",
        "https:\/\/*.youtube.com\/*",
        "clipboardWrite",
        "clipboardRead"
    ],
    "background": {
        "page": "background.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}