Airbnb Review Summarizer

Summarize Airbnb reviews to be useful

什么是Airbnb Review Summarizer?

Airbnb Review Summarizer是由radicalblind开发的Chrome扩展程序,该扩展的主要功能是“Summarize Airbnb reviews to be useful”。

扩展截图

screenshot
screenshot

下载Airbnb Review Summarizer扩展crx文件

下载Airbnb Review Summarizer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Airbnb Review Summarizer Airbnb Review Summarizer
ID gglfjedidmkhekcniiggodppplefhcbn
官方URL https://chromewebstore.google.com/detail/airbnb-review-summarizer/gglfjedidmkhekcniiggodppplefhcbn
简介 Summarize Airbnb reviews to be useful
文件大小 93.95 KB
安装次数 53
当前版本 0.0.3
更新时间 2023-06-06
上架时间 2023-05-31
开发者 radicalblind
电子邮箱 [email protected]
付费类型 free
扩展官网 https://airbnbreviewsummarizer.vercel.app/
支持的语言 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'"
    }
}