GitHub Copy
Lets you click file paths and branch names to copy them to your clipboard.
GitHub Copy क्या है?
GitHub Copy coley द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Lets you click file paths and branch names to copy them to your clipboard."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GitHub Copy एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
आधिकारिक URL | 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" ] } |