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é es Copy Title as Hyper-Link for YouTube™?
Copy Title as Hyper-Link for YouTube™ es una extensión de Chrome desarrollada por Leigh Murray, y su función principal es "Copy (CTRL+C, CMD+C, Edit->Copy) with nothing selected and the title of the current YouTube video will be copied as a hyperlink".
Descargar Archivo CRX de la Extensión Copy Title as Hyper-Link for YouTube™
Descarga archivos de extensión Copy Title as Hyper-Link for YouTube™ en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
*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.
Información Básica de la Extensión
Nombre | |
ID | hgcjodjfhekkfffkikfmplmedpkbacbd |
URL Oficial | https://chrome.google.com/webstore/detail/copy-title-as-hyper-link/hgcjodjfhekkfffkikfmplmedpkbacbd |
Descripción | Copy (CTRL+C, CMD+C, Edit->Copy) with nothing selected and the title of the current YouTube video will be copied as a hyperlink |
Tamaño del Archivo | 46.3 KB |
Cantidad de Instalaciones | 45 |
Versión Actual | 1.1 |
Última Actualización | 2013-11-11 |
Fecha de Publicación | 2013-11-11 |
Calificación | 3.80/5 Total de 5 Calificaciones |
Desarrollador | Leigh Murray |
Tipo de Pago | free |
Idiomas Soportados | 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" } } |