Github Copy File Extension
A chrome extension that adds a Copy file to clipboard button to Github code browser
O que é Github Copy File Extension?
Github Copy File Extension é uma extensão do Chrome desenvolvida por itayadler, e sua principal característica é "A chrome extension that adds a Copy file to clipboard button to Github code browser".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Github Copy File Extension
Baixe arquivos de extensão Github Copy File Extension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Github Copy File Extension |
ID | gnbcglemedljbhbgpdonmndgofjghchj |
URL Oficial | https://chromewebstore.google.com/detail/github-copy-file-extensio/gnbcglemedljbhbgpdonmndgofjghchj |
Descrição | A chrome extension that adds a Copy file to clipboard button to Github code browser |
Tamanho do Arquivo | 36.83 KB |
Contagem de Instalações | 38 |
Versão Atual | 0.0.2 |
Última Atualização | 2020-06-02 |
Data de Publicação | 2020-06-02 |
Desenvolvedor | itayadler |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/itayadler/github-file-copy |
URL da Página de Ajuda | https://github.com/itayadler/github-file-copy/issues |
Idiomas Suportados | 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" ] } |