Clipboard for Rally
Copy different type of links from (almost) any screen of Rally
Clipboard for Rally क्या है?
Clipboard for Rally Ulysse Prygiel द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Copy different type of links from (almost) any screen of Rally"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Clipboard for Rally एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Copy different type of links from (almost) any screen. GRID/LIST VIEW Add a button next to each ticket to copy the url. Choose the type of link you want to copy: * url - http://host.com/path/to/ticket * id - US1234 * markdown - [id: title](url) * confluence - [id: title | url] * Html - link with to the ticket with the following display text id: title OPEN TICKET VIEW When you're working on a ticket, quickly copy the link from any tab Bugs and suggestions at : https://github.com/ulybu/rally-ext/issues
एक्सटेंशन की मूल जानकारी
नाम | Clipboard for Rally |
ID | gaoglodjegfcmjckjagjhbollbibjjnf |
आधिकारिक URL | https://chromewebstore.google.com/detail/clipboard-for-rally/gaoglodjegfcmjckjagjhbollbibjjnf |
विवरण | Copy different type of links from (almost) any screen of Rally |
फ़ाइल का आकार | 40.01 KB |
स्थापना संख्या | 30 |
वर्तमान संस्करण | 0.9.3 |
अंतिम अपडेट | 2016-03-18 |
प्रकाशन तिथि | 2016-03-17 |
रेटिंग | 5.00/5 कुल 3 रेटिंग्स |
डेवलपर | Ulysse Prygiel |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/ulybu/rally-ext |
सहायता पृष्ठ URL | https://github.com/ulybu/rally-ext/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Clipboard for Rally", "version": "0.9.3", "description": "Copy different type of links from (almost) any screen of Rally", "author": "[email protected]", "content_scripts": [ { "matches": [ "https:\/\/*.rallydev.com\/*" ], "css": [ "icons\/octicons.css", "src\/injection\/theme.css" ], "js": [ "src\/shared\/lodash.custom.min.js", "src\/shared\/config.js", "src\/injection\/inject-clips.js" ] } ], "permissions": [ "storage", "clipboardWrite" ], "web_accessible_resources": [ "icons\/*.woff" ], "options_ui": { "page": "src\/options\/options.html", "chrome_style": true }, "options_page": "src\/options\/options.html" } |