GitHub Copy
Lets you click file paths and branch names to copy them to your clipboard.
O que é GitHub Copy?
GitHub Copy é uma extensão do Chrome desenvolvida por coley, e sua principal característica é "Lets you click file paths and branch names to copy them to your clipboard.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão GitHub Copy
Baixe arquivos de extensão GitHub Copy 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
GitHub Copy allows you to copy file paths and branch names to your clipboard just by clicking on them. Once you click on a file path or branch name, you will be notified that it has been copied to your system clipboard. This extension makes trivial to jump right into the file you need. You don't have to fumble with selecting text or triple clicking the line to highlight it's entirety, nor do you have to press the keyboard shortcut for copy on your system. All you have to do is click and paste. GitHub Repo: https://github.com/srcoley/github_copy_file_path
Informações Básicas da Extensão
Nome | GitHub Copy |
ID | eokbemickongbblekfefmfkcihpamnii |
URL Oficial | https://chromewebstore.google.com/detail/github-copy/eokbemickongbblekfefmfkcihpamnii |
Descrição | Lets you click file paths and branch names to copy them to your clipboard. |
Tamanho do Arquivo | 42.09 KB |
Contagem de Instalações | 21 |
Versão Atual | 0.5 |
Última Atualização | 2015-07-31 |
Data de Publicação | 2015-07-30 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | coley |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub Copy", "author": "Stephen Coley", "version": "0.5", "description": "Lets you click file paths and branch names to copy them to your clipboard.", "icons": { "19": "images\/icon19.png", "38": "images\/icon38.png", "128": "images\/icon128.png" }, "background": { "scripts": [ "backgroundPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/github.com\/*", "https:\/\/github.com\/*" ], "js": [ "jquery-2.1.0.min.js", "content.js" ] } ], "permissions": [ "clipboardWrite", "http:\/\/github.com\/", "https:\/\/github.com\/" ], "web_accessible_resources": [ "images\/*.png" ] } |