GitHub Copy
Lets you click file paths and branch names to copy them to your clipboard.
什麼是GitHub Copy?
GitHub Copy是由coley開發的Chrome擴展程式,該擴展的主要功能是“Lets you click file paths and branch names to copy them to your clipboard.”。
擴展截圖
下載GitHub Copy擴展crx文件
下載GitHub Copy擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | GitHub Copy |
ID | eokbemickongbblekfefmfkcihpamnii |
官方網址 | https://chromewebstore.google.com/detail/github-copy/eokbemickongbblekfefmfkcihpamnii |
簡介 | Lets you click file paths and branch names to copy them to your clipboard. |
檔案大小 | 42.09 KB |
安裝次數 | 21 |
目前版本 | 0.5 |
更新時間 | 2015-07-31 |
上架時間 | 2015-07-30 |
評分 | 5.00/5 共 2 次評分 |
開發者 | coley |
付費類型 | free |
支援的語言 | 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" ] } |