GitHub Copy
Lets you click file paths and branch names to copy them to your clipboard.
Cos'è GitHub Copy?
GitHub Copy è un'estensione di Chrome sviluppata da coley, e la sua funzione principale è "Lets you click file paths and branch names to copy them to your clipboard.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GitHub Copy
Scarica i file di estensione GitHub Copy in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | GitHub Copy |
ID | eokbemickongbblekfefmfkcihpamnii |
URL Ufficiale | https://chromewebstore.google.com/detail/github-copy/eokbemickongbblekfefmfkcihpamnii |
Descrizione | Lets you click file paths and branch names to copy them to your clipboard. |
Dimensione del File | 42.09 KB |
Conteggio Installazioni | 21 |
Versione Corrente | 0.5 |
Ultimo Aggiornamento | 2015-07-31 |
Data di Pubblicazione | 2015-07-30 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | coley |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |