Github Copy File Extension
A chrome extension that adds a Copy file to clipboard button to Github code browser
Что такое Github Copy File Extension?
Github Copy File Extension - это расширение Chrome, разработанное itayadler, и его основная функция - "A chrome extension that adds a Copy file to clipboard button to Github code browser".
Снимки экрана расширения
Скачать файл CRX расширения Github Copy File Extension
Скачайте файлы расширений Github Copy File Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Sometimes you just want to copy code from Github's code viewer and don't want to click on the Raw button, and hit Ctrl+A and Ctrl+C to get the code from the new tab
Основная информация о расширении
Название | Github Copy File Extension |
ID | gnbcglemedljbhbgpdonmndgofjghchj |
Официальный URL | https://chromewebstore.google.com/detail/github-copy-file-extensio/gnbcglemedljbhbgpdonmndgofjghchj |
Описание | A chrome extension that adds a Copy file to clipboard button to Github code browser |
Размер файла | 36.83 KB |
Количество установок | 38 |
Текущая Версия | 0.0.2 |
Последнее Обновление | 2020-06-02 |
Дата публикации | 2020-06-02 |
Разработчик | itayadler |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/itayadler/github-file-copy |
URL страницы помощи | https://github.com/itayadler/github-file-copy/issues |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "A chrome extension that adds a Copy file to clipboard button to Github code browser", "version": "0.0.2", "name": "Github Copy File Extension", "manifest_version": 2, "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.github.com\/*", "https:\/\/github.com\/*" ], "run_at": "document_idle", "js": [ "contentscript.js" ] } ], "permissions": [ "webNavigation" ] } |