Roadmap

Capture product feedback anywhere.

Cos'è Roadmap?

Roadmap è un'estensione di Chrome sviluppata da https://roadmap.space, e la sua funzione principale è "Capture product feedback anywhere.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Roadmap

Scarica i file di estensione Roadmap in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Roadmap Roadmap
ID acgfcgmnegdfncljdiinbkhohndjoooj
URL Ufficiale https://chromewebstore.google.com/detail/roadmap/acgfcgmnegdfncljdiinbkhohndjoooj
Descrizione Capture product feedback anywhere.
Dimensione del File 983 KB
Conteggio Installazioni 99
Versione Corrente 1.2.0
Ultimo Aggiornamento 2021-12-30
Data di Pubblicazione 2020-01-23
Valutazione 5.00/5 Totale 6 Valutazioni
Sviluppatore https://roadmap.space
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://roadmap.space
URL della Pagina di Aiuto https://roadmap.space/help/integrations/communication-tools/chrome-extension/
URL della Pagina della Politica sulla Privacy https://roadmap.space/legal/privacy-policy
Lingue Supportate 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\/"
    ]
}