Review Extraction

Extract online reviews from the most popular review sites with ease.

Что такое Review Extraction?

Review Extraction - это расширение Chrome, разработанное https://www.symanto.net, и его основная функция - "Extract online reviews from the most popular review sites with ease.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Review Extraction

Скачайте файлы расширений Review Extraction в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Use this extension to retrieve reviews from the most popular review sites without having to copy&paste. The reviews will be made available as an Excel file so you can analyze them with Symanto's Text Insights Platform. 

✔ Upload directly to Symanto Platform
The exported Excel file can directly be used to create a new project in Symanto's Text Analytics Platform.

Symanto's Platform is free to use to analyze up to 500 online reviews.

Symanto's unique combination of psychology and AI enables the deepest level of understanding of not only what someone is saying, but how they say it. Decode the communication characteristics of the message and engage with the author in the right way. 

★★★ GET IN TOUCH ★★★
Email us at [email protected]
Web: https://www.symanto.net/
Facebook https://www.facebook.com/SymantoAI/
Twitter @SymantoAI                    

Основная информация о расширении

Название Review Extraction Review Extraction
ID hdcapifgljoaodhknhfekopheamhbhoi
Официальный URL https://chromewebstore.google.com/detail/review-extraction/hdcapifgljoaodhknhfekopheamhbhoi
Описание Extract online reviews from the most popular review sites with ease.
Размер файла 829 KB
Количество установок 405
Текущая Версия 1.3.3
Последнее Обновление 2021-06-01
Дата публикации 2020-07-02
Рейтинг 4.65/5 Всего 20 оценок
Разработчик https://www.symanto.net
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://www.symanto.com/privacy-policy
Поддерживаемые языки de,en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "author": "Symanto GmbH & Co. KG",
    "default_locale": "en",
    "version": "1.3.3",
    "permissions": [
        "storage",
        "tabs",
        "unlimitedStorage"
    ],
    "background": {
        "scripts": [
            "script.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.tripadvisor.com\/Restaurant_Review*",
                "*:\/\/*.tripadvisor.de\/Restaurant_Review*",
                "*:\/\/*.tripadvisor.es\/Restaurant_Review*",
                "*:\/\/*.tripadvisor.co.uk\/Restaurant_Review*"
            ],
            "js": [
                "utils\/date.js",
                "tripadvisor\/restaurant\/extract-reviews.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.tripadvisor.com\/Hotel_Review*",
                "*:\/\/*.tripadvisor.de\/Hotel_Review*",
                "*:\/\/*.tripadvisor.es\/Hotel_Review*",
                "*:\/\/*.tripadvisor.co.uk\/Hotel_Review*"
            ],
            "js": [
                "utils\/date.js",
                "tripadvisor\/hotel\/extract-reviews.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.tripadvisor.com\/AttractionProductReview*",
                "*:\/\/*.tripadvisor.de\/AttractionProductReview*",
                "*:\/\/*.tripadvisor.es\/AttractionProductReview*",
                "*:\/\/*.tripadvisor.co.uk\/AttractionProductReview*"
            ],
            "js": [
                "utils\/date.js",
                "tripadvisor\/attraction-product\/extract-reviews.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.tripadvisor.com\/Attraction_Review*",
                "*:\/\/*.tripadvisor.de\/Attraction_Review*",
                "*:\/\/*.tripadvisor.es\/Attraction_Review*",
                "*:\/\/*.tripadvisor.co.uk\/Attraction_Review*"
            ],
            "js": [
                "utils\/date.js",
                "tripadvisor\/attraction\/extract-reviews.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.tripadvisor.com\/VacationRentalReview*",
                "*:\/\/*.tripadvisor.de\/VacationRentalReview*",
                "*:\/\/*.tripadvisor.es\/VacationRentalReview*",
                "*:\/\/*.tripadvisor.co.uk\/VacationRentalReview*"
            ],
            "js": [
                "utils\/date.js",
                "tripadvisor\/vacation-rental\/extract-reviews.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.tripadvisor.com\/Cruise_Review*",
                "*:\/\/*.tripadvisor.de\/Cruise_Review*",
                "*:\/\/*.tripadvisor.es\/Cruise_Review*",
                "*:\/\/*.tripadvisor.co.uk\/Cruise_Review*"
            ],
            "js": [
                "utils\/date.js",
                "tripadvisor\/cruise\/extract-reviews.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.tripadvisor.com\/Airline_Review*",
                "*:\/\/*.tripadvisor.de\/Airline_Review*",
                "*:\/\/*.tripadvisor.es\/Airline_Review*",
                "*:\/\/*.tripadvisor.co.uk\/Airline_Review*"
            ],
            "js": [
                "utils\/date.js",
                "tripadvisor\/airline\/extract-reviews.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.yelp.com\/biz*",
                "*:\/\/*.yelp.de\/biz*",
                "*:\/\/*.yelp.es\/biz*",
                "*:\/\/*.yelp.co.uk\/biz*"
            ],
            "js": [
                "utils\/date.js",
                "yelp\/biz\/extract-reviews.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.amazon.com\/*",
                "*:\/\/*.amazon.de\/*",
                "*:\/\/*.amazon.es\/*",
                "*:\/\/*.amazon.co.uk\/*"
            ],
            "js": [
                "utils\/date.js",
                "amazon\/extract-reviews.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.trustpilot.com\/review*"
            ],
            "js": [
                "utils\/date.js",
                "trustpilot\/review\/extract-reviews.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "js": [
                "utils\/date.js",
                "facebook\/reviews\/extract-reviews.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.google.com\/*",
                "*:\/\/*.google.de\/*",
                "*:\/\/*.google.es\/*",
                "*:\/\/*.google.co.uk\/*"
            ],
            "js": [
                "utils\/date.js",
                "gmb\/extract-reviews.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.aliexpress.com\/*"
            ],
            "js": [
                "utils\/date.js",
                "aliexpress\/extract-reviews.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.bestbuy.com\/*"
            ],
            "js": [
                "utils\/date.js",
                "bestbuy\/extract-reviews.js"
            ]
        },
        {
            "matches": [
                "*:\/\/play.google.com\/store\/apps\/details*"
            ],
            "js": [
                "utils\/date.js",
                "googleplaystore\/extract-reviews.js"
            ]
        },
        {
            "matches": [
                "*:\/\/apps.apple.com\/*"
            ],
            "js": [
                "utils\/date.js",
                "appleappstore\/extract-reviews.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.indeed.com\/cmp\/*\/reviews*",
                "*:\/\/de.indeed.com\/cmp\/*\/reviews*",
                "*:\/\/es.indeed.com\/cmp\/*\/reviews*",
                "*:\/\/www.indeed.co.uk\/cmp\/*\/reviews*"
            ],
            "js": [
                "utils\/date.js",
                "indeed\/extract-reviews.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.helpmycash.com\/*"
            ],
            "js": [
                "utils\/date.js",
                "helpmycash\/extract-reviews.js",
                "utils\/sugar.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.mimedicamento.es\/*\/*"
            ],
            "js": [
                "utils\/date.js",
                "mimedicamento\/extract-reviews.js",
                "utils\/sugar.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "manifest_version": 2
}