Assembla Screenshots

Takes a screenshot and adds it to an Assembla ticket.

Assembla Screenshots란 무엇입니까?

Assembla Screenshots은(는) Marcus Matos에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Takes a screenshot and adds it to an Assembla ticket."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Assembla Screenshots 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
}