Clipboard for Rally
Copy different type of links from (almost) any screen of Rally
Clipboard for Rallyคืออะไร?
Clipboard for Rally เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ulysse Prygiel และคุณลักษณะหลักของมันคือ "Copy different type of links from (almost) any screen of Rally"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Clipboard for Rally
ดาวน์โหลดไฟล์ส่วนขยาย Clipboard for Rally ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } |