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
Что такое Copy Title as Hyper-Link for YouTube™?
Copy Title as Hyper-Link for YouTube™ - это расширение Chrome, разработанное Leigh Murray, и его основная функция - "Copy (CTRL+C, CMD+C, Edit->Copy) with nothing selected and the title of the current YouTube video will be copied as a hyperlink".
Скачать файл CRX расширения Copy Title as Hyper-Link for YouTube™
Скачайте файлы расширений Copy Title as Hyper-Link for YouTube™ в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
*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.
Основная информация о расширении
Название | |
ID | hgcjodjfhekkfffkikfmplmedpkbacbd |
Официальный URL | https://chrome.google.com/webstore/detail/copy-title-as-hyper-link/hgcjodjfhekkfffkikfmplmedpkbacbd |
Описание | Copy (CTRL+C, CMD+C, Edit->Copy) with nothing selected and the title of the current YouTube video will be copied as a hyperlink |
Размер файла | 46.3 KB |
Количество установок | 45 |
Текущая Версия | 1.1 |
Последнее Обновление | 2013-11-11 |
Дата публикации | 2013-11-11 |
Рейтинг | 3.80/5 Всего 5 оценок |
Разработчик | Leigh Murray |
Тип оплаты | free |
Поддерживаемые языки | 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" } } |