Assembla Screenshots

Takes a screenshot and adds it to an Assembla ticket.

Assembla Screenshotsคืออะไร?

Assembla Screenshots เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Marcus Matos และคุณลักษณะหลักของมันคือ "Takes a screenshot and adds it to an Assembla ticket."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Assembla Screenshots

ดาวน์โหลดไฟล์ส่วนขยาย Assembla Screenshots ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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"
}