Product Feedback Collector

Collects product feedback by presenting a form. The form itself can be created in Google Forms or any other survey platform

Was ist Product Feedback Collector?

Product Feedback Collector ist eine Chrome-Erweiterung, die von https://getthematic.com entwickelt wurde, und ihr Hauptmerkmal ist "Collects product feedback by presenting a form. The form itself can be created in Google Forms or any other survey platform".

Erweiterungsscreenshots

screenshot

Product Feedback Collector-Erweiterungs-CRX-Datei herunterladen

Laden Sie Product Feedback Collector-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

                        Product Feedback Collector helps your team collect feedback in the moment, directly in the browser.

The user highlights a piece of text on the webpage and the add-on automatically populates the form in the pop up..

How you can use it:
* Your sales people can share the relevant pieces of emails or CRM notes that contain customer feedback
* Your customer success can provide feedback on issues customers are facing
* Your user researcher team can select the relevant pieces of interviews that succinctly represent what the interview established

By only submitting the relevant pieces of text the noise gets cut out and only actual feedback is shared with the team.                    

Grundlegende Informationen zur Erweiterung

Name Product Feedback Collector Product Feedback Collector
ID hlipbnepakbgaklolfdllblgphgdimap
Offizielle URL https://chromewebstore.google.com/detail/product-feedback-collecto/hlipbnepakbgaklolfdllblgphgdimap
Beschreibung Collects product feedback by presenting a form. The form itself can be created in Google Forms or any other survey platform
Dateigröße 13.93 KB
Installationsanzahl 54
Aktuelle Version 0.0.3
Letztes Update 2023-09-04
Veröffentlichungsdatum 2020-09-22
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://getthematic.com
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Product Feedback Collector",
    "version": "0.0.3",
    "description": "Collects product feedback by presenting a form. The form itself can be created in Google Forms or any other survey platform",
    "homepage_url": "https:\/\/getthematic.com",
    "manifest_version": 2,
    "minimum_chrome_version": "74",
    "icons": {
        "192": "logo.png"
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "browser_action": {
        "default_icon": {
            "192": "logo.png"
        },
        "default_title": "Send Feedback to Team"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "browser-polyfill.min.js",
            "background.js"
        ]
    }
}