Roadmap

Capture product feedback anywhere.

Was ist Roadmap?

Roadmap ist eine Chrome-Erweiterung, die von https://roadmap.space entwickelt wurde, und ihr Hauptmerkmal ist "Capture product feedback anywhere.".

Erweiterungsscreenshots

screenshot

Roadmap-Erweiterungs-CRX-Datei herunterladen

Laden Sie Roadmap-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Roadmap Roadmap
ID acgfcgmnegdfncljdiinbkhohndjoooj
Offizielle URL https://chromewebstore.google.com/detail/roadmap/acgfcgmnegdfncljdiinbkhohndjoooj
Beschreibung Capture product feedback anywhere.
Dateigröße 983 KB
Installationsanzahl 99
Aktuelle Version 1.2.0
Letztes Update 2021-12-30
Veröffentlichungsdatum 2020-01-23
Bewertung 5.00/5 Insgesamt 6 Bewertungen
Entwickler https://roadmap.space
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://roadmap.space
Hilfeseite URL https://roadmap.space/help/integrations/communication-tools/chrome-extension/
URL der Datenschutzrichtlinien-Seite https://roadmap.space/legal/privacy-policy
Unterstützte Sprachen 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\/"
    ]
}