Roadmap

Forecast resources and track time with Basecamp.

Roadmap란 무엇입니까?

Roadmap은(는) Roadmap에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Forecast resources and track time with Basecamp."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Roadmap is a web-based SaaS app that helps you to:
- connect goals with resource capacity realities
- load balance when projects are at risk
- provide custom, executive-level reports

Roadmap can be used as a stand-alone solution, or to unify data from popular project / team collaboration tools like Basecamp, GitHub, JIRA, etc.

The Chrome extension creates a seamless user experience. Users can manage inputs essential to forecast resources -- start date, end date, and estimates -- inputs that Basecamp, GitHub and JIRA do not natively support, all without toggling back-and-forth between apps.

The extension also supports time tracking to enable planned vs. actual vs. difference reporting (by project, resource, task & date range).

Don't change the way you drive, ditch the spreadsheet instead!                    

확장 프로그램 기본 정보

이름 Roadmap Roadmap
ID kocnlcjmilagfcojemhbijcjphhlbini
공식 URL https://chromewebstore.google.com/detail/roadmap/kocnlcjmilagfcojemhbijcjphhlbini
설명 Forecast resources and track time with Basecamp.
파일 크기 241 KB
설치 횟수 612
현재 버전 2.0.5
최근 업데이트 2016-07-29
출시 날짜 2016-07-28
평점 4.67/5 총 3 개의 평점
개발자 Roadmap
결제 유형 free
확장 프로그램 웹 사이트 https://ppmroadmap.com/
도움말 페이지 URL https://ppmroadmap.uservoice.com/knowledgebase/topics/63093-browser-extension
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Roadmap",
    "description": "Forecast resources and track time with Basecamp.",
    "version": "2.0.5",
    "icons": {
        "16": "images\/icon16.png",
        "24": "images\/icon24.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "background",
        "storage",
        "tabs",
        "webRequest",
        "*:\/\/*.github.com\/",
        "*:\/\/*.basecamp.com\/*",
        "*:\/\/*.basecamphq.com\/*"
    ],
    "background": {
        "scripts": [
            "libs\/jquery-2.1.4.min.js",
            "js\/api.js",
            "js\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "images\/rdm-extenion-icon-chrome_bar-off.png",
        "default_title": "Roadmap",
        "default_popup": "html\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*",
                "*:\/\/*.basecamp.com\/*",
                "*:\/\/*.basecamphq.com\/*"
            ],
            "css": [
                "libs\/jquery-ui-1.11.4.custom\/jquery-ui.css",
                "css\/page.css"
            ],
            "js": [
                "libs\/jquery-2.1.4.min.js",
                "libs\/jquery-ui-1.11.4.custom\/jquery-ui.js",
                "js\/alert.js",
                "js\/api.js",
                "js\/timer.js",
                "js\/extension.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/*.*",
        "images\/ui\/*.*"
    ]
}