Add this page to Trello

Add this page to Trello as new task

Add this page to Trello란 무엇입니까?

Add this page to Trello은(는) https://www.muratayusuke.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add this page to Trello as new task"입니다.

확장 프로그램 스크린샷

screenshot

Add this page to Trello 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Simple extension for Trello user to add current page to Trello as new task.                    

확장 프로그램 기본 정보

이름 Add this page to Trello Add this page to Trello
ID fjfljghieliggacelkamhfiiejncmjmi
공식 URL https://chromewebstore.google.com/detail/add-this-page-to-trello/fjfljghieliggacelkamhfiiejncmjmi
설명 Add this page to Trello as new task
파일 크기 53.6 KB
설치 횟수 552
현재 버전 0.105
최근 업데이트 2015-06-06
출시 날짜 2015-06-05
평점 3.33/5 총 3 개의 평점
개발자 https://www.muratayusuke.com
결제 유형 free
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "version": "0.105",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "icons": {
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "background": {
        "scripts": [
            "jquery-2.1.3.min.js",
            "main.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_title": "Add this page to Trello",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "http:\/\/*\/*\/",
        "https:\/\/*\/*\/"
    ]
}