Airbnb Review Summarizer

Summarize Airbnb reviews to be useful

Co to jest Airbnb Review Summarizer?

Airbnb Review Summarizer to rozszerzenie Chrome opracowane przez radicalblind, a jego główną funkcją jest „Summarize Airbnb reviews to be useful”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Airbnb Review Summarizer

Pobierz pliki rozszerzeń Airbnb Review Summarizer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Renters don't always have time to go through all the listing reviews to decide if the listing is a right fit. 
This extension helps renters quickly summarize the reviews to be relevant to our preferences.                    

Podstawowe informacje o rozszerzeniu

Nazwa Airbnb Review Summarizer Airbnb Review Summarizer
ID gglfjedidmkhekcniiggodppplefhcbn
Oficjalny URL https://chromewebstore.google.com/detail/airbnb-review-summarizer/gglfjedidmkhekcniiggodppplefhcbn
Opis Summarize Airbnb reviews to be useful
Rozmiar pliku 93.95 KB
Liczba instalacji 53
Aktualna Wersja 0.0.3
Ostatnia Aktualizacja 2023-06-06
Data Publikacji 2023-05-31
Deweloper radicalblind
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://airbnbreviewsummarizer.vercel.app/
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Airbnb Review Summarizer",
    "version": "0.0.3",
    "description": "Summarize Airbnb reviews to be useful",
    "action": {
        "default_icon": ".\/assets\/airbnb_openai.png",
        "default_popup": ".\/dist\/popup\/index.html"
    },
    "background": {
        "service_worker": ".\/dist\/background\/index.mjs"
    },
    "icons": {
        "16": ".\/assets\/airbnb_openai.png",
        "48": ".\/assets\/airbnb_openai.png",
        "128": ".\/assets\/airbnb_openai.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/airbnb.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/airbnb.com\/*\/reviews*",
                "https:\/\/*.airbnb.com\/*\/reviews*"
            ],
            "js": [
                "dist\/contentScripts\/index.global.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/contentScripts\/style.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}