Roadmap

Capture product feedback anywhere.

什么是Roadmap?

Roadmap是由https://roadmap.space开发的Chrome扩展程序,该扩展的主要功能是“Capture product feedback anywhere.”。

扩展截图

screenshot

下载Roadmap扩展crx文件

下载Roadmap扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Roadmap's Chrome extension lets teams collect product feedback from anywhere on the internet.

Highlight feedback from anywhere such as social media, 3rd party tools, or forums then click the extension to add it to Roadmap. You can add brand new feedback or add feedback to an existing idea or story, capture the URL, and add feedback on behalf of someone else, like a customer or lead.

The extension is a great way for teams to link back to feedback in situations where email isn't accessible, like Facebook and Twitter.

As you add feedback to ideas and the roadmap, you can automatically notify followers of progress. The browser icon becomes a handy link back to the original URL the feedback came from.                    

扩展基本信息

名称 Roadmap Roadmap
ID acgfcgmnegdfncljdiinbkhohndjoooj
官方URL https://chromewebstore.google.com/detail/roadmap/acgfcgmnegdfncljdiinbkhohndjoooj
简介 Capture product feedback anywhere.
文件大小 983 KB
安装次数 99
当前版本 1.2.0
更新时间 2021-12-30
上架时间 2020-01-23
评分 5.00/5 共6次评分
开发者 https://roadmap.space
电子邮箱 [email protected]
付费类型 free
扩展官网 https://roadmap.space
帮助页面URL https://roadmap.space/help/integrations/communication-tools/chrome-extension/
隐私政策页面URL https://roadmap.space/legal/privacy-policy
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Roadmap",
    "description": "Capture product feedback anywhere.",
    "version": "1.2.0",
    "browser_action": {
        "default_title": "Roadmap",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.bundle.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/app.roadmap.space\/"
    ]
}