Airbnb Review Summarizer

Summarize Airbnb reviews to be useful

Co je Airbnb Review Summarizer?

Airbnb Review Summarizer je rozšíření Chrome vyvinuté radicalblind, a jeho hlavní funkcí je „Summarize Airbnb reviews to be useful“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Airbnb Review Summarizer

Stáhněte si soubory rozšíření Airbnb Review Summarizer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Airbnb Review Summarizer Airbnb Review Summarizer
ID gglfjedidmkhekcniiggodppplefhcbn
Oficiální URL https://chromewebstore.google.com/detail/airbnb-review-summarizer/gglfjedidmkhekcniiggodppplefhcbn
Popis Summarize Airbnb reviews to be useful
Velikost souboru 93.95 KB
Počet instalací 53
Aktuální Verze 0.0.3
Poslední Aktualizace 2023-06-06
Datum Vydání 2023-05-31
Vývojář radicalblind
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://airbnbreviewsummarizer.vercel.app/
Podporované Jazyky 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'"
    }
}