Roadmap

Capture product feedback anywhere.

¿Qué es Roadmap?

Roadmap es una extensión de Chrome desarrollada por https://roadmap.space, y su función principal es "Capture product feedback anywhere.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Roadmap

Descarga archivos de extensión Roadmap en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Roadmap Roadmap
ID acgfcgmnegdfncljdiinbkhohndjoooj
URL Oficial https://chromewebstore.google.com/detail/roadmap/acgfcgmnegdfncljdiinbkhohndjoooj
Descripción Capture product feedback anywhere.
Tamaño del Archivo 983 KB
Cantidad de Instalaciones 99
Versión Actual 1.2.0
Última Actualización 2021-12-30
Fecha de Publicación 2020-01-23
Calificación 5.00/5 Total de 6 Calificaciones
Desarrollador https://roadmap.space
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://roadmap.space
URL de la Página de Ayuda https://roadmap.space/help/integrations/communication-tools/chrome-extension/
URL de la Página de Política de Privacidad https://roadmap.space/legal/privacy-policy
Idiomas Soportados 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\/"
    ]
}