Roadmap
Forecast resources and track time with Basecamp.
什麼是Roadmap?
Roadmap是由Roadmap開發的Chrome擴展程式,該擴展的主要功能是“Forecast resources and track time with Basecamp.”。
擴展截圖
下載Roadmap擴展crx文件
下載Roadmap擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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! 擴展基本資訊
| 名稱 | |
| ID | kocnlcjmilagfcojemhbijcjphhlbini |
| 官方網址 | 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\/*.*"
]
} | |