Assembla Screenshots
Takes a screenshot and adds it to an Assembla ticket.
Assembla Screenshots क्या है?
Assembla Screenshots Marcus Matos द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Takes a screenshot and adds it to an Assembla ticket."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Assembla Screenshots एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Takes a screenshot of the current tab, a particular application or a particular screen and attach it to a new or existing Assembla ticket. Even allows you to paste an image from the clipboard! Note: This is my first chrome extension ever - please bear with me as I improve this app! This extension is developed by a third party and is not affiliated with Assembla in any way. Permissions details: * "Read and change your data on api.assembla.com" - because I need to talk to the Assembla API. * "Read your browsing history" - not an accurate description, but it means that I'm able to capture details about your tabs (only used to grab a screenshot.) * "Capture content of your screen" - well...that's the purpose of this extension, right? :) Note: For this first version, you will need to go to Assembla and retrieve your API key and secret. Future versions will implement oAuth. Known Issues / Future Improvements: * Will be switching to oAuth for API Access * Currently only displays Active tickets assigned to you. * Ticket list order is erratic - will change to type-ahead search in the future.
एक्सटेंशन की मूल जानकारी
नाम | Assembla Screenshots |
ID | ljdlkgmkhicbdfhjagjjaepipalepjfm |
आधिकारिक URL | https://chromewebstore.google.com/detail/assembla-screenshots/ljdlkgmkhicbdfhjagjjaepipalepjfm |
विवरण | Takes a screenshot and adds it to an Assembla ticket. |
फ़ाइल का आकार | 39.99 KB |
स्थापना संख्या | 11 |
वर्तमान संस्करण | 0.1 |
अंतिम अपडेट | 2014-10-21 |
प्रकाशन तिथि | 2014-10-21 |
रेटिंग | 3.50/5 कुल 2 रेटिंग्स |
डेवलपर | Marcus Matos |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Assembla Screenshots", "description": "Takes a screenshot and adds it to an Assembla ticket.", "version": "0.1", "permissions": [ "tabs", "activeTab", "desktopCapture", "storage", "https:\/\/api.assembla.com\/" ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "options_page": "options.html" } |